<?php

use Phalcon\Mvc\Model\Migration;

class AreaIntervensiMigration_320 extends Migration
{
    public function up()
    {
        $this->down();
        self::$connection->execute("
            ALTER TABLE jaga.korsupgah_area_intervensi ADD COLUMN presentase_bobot_wo_dana_desa integer DEFAULT 0;
        ");
    }

    public function down()
    {
        self::$connection->execute("
            ALTER TABLE jaga.korsupgah_area_intervensi DROP COLUMN IF EXISTS presentase_bobot_wo_dana_desa;
        ");
    }
}