<?php

use Phalcon\Mvc\Model\Migration;

class KorsupgahAreaIntervensiMigration_290 extends Migration
{
    public function up()
    {
        self::$connection->execute('
            ALTER TABLE "jaga"."korsupgah_area_intervensi" 
                ADD IF NOT EXISTS id_transfer_bobot INT DEFAULT 0;
        ');
    }

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