<?php

use Phalcon\Mvc\Model\Migration;

class KorsupgahSurveyMigration_179 extends Migration
{
    public function up()
    {
        self::$connection->execute("ALTER TABLE jaga.korsupgah_survey ADD COLUMN id_template INT");
        self::$connection->execute("ALTER TABLE jaga.korsupgah_survey ADD COLUMN keterangan INT");
    }

    public function down()
    {
        self::$connection->execute("ALTER TABLE jaga.korsupgah_survey DROP COLUMN id_template INT");
        self::$connection->execute("ALTER TABLE jaga.korsupgah_survey DROP COLUMN keterangan INT");
    }
}
