<?php

use Phalcon\Mvc\Model\Migration;

class KorsupgahAnswerMigration_185 extends Migration
{
    public function up()
    {
        self::$connection->execute("ALTER TABLE jaga.korsupgah_answer ADD COLUMN verified_by INT");
        self::$connection->execute("ALTER TABLE jaga.korsupgah_answer ADD COLUMN verified_at timestamp(6)");
    }

    public function down()
    {
        self::$connection->execute("ALTER TABLE jaga.korsupgah_answer DROP COLUMN verified_by");
        self::$connection->execute("ALTER TABLE jaga.korsupgah_answer DROP COLUMN verified_at");
    }
}
