<?php

use Phalcon\Mvc\Model\Migration;

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

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