<?php

use Phalcon\Mvc\Model\Migration;

class StranasPeriodeMigration_190 extends Migration
{
    public function up()
    {
        self::$connection->execute("ALTER TABLE jaga.stranas_periode ADD COLUMN verification_started_at timestamp(6)");
        self::$connection->execute("ALTER TABLE jaga.stranas_periode ADD COLUMN verification_ended_at timestamp(6)");
    }

    public function down()
    {
        self::$connection->execute("ALTER TABLE jaga.stranas_periode DROP COLUMN verification_started_at timestamp(6)");
        self::$connection->execute("ALTER TABLE jaga.stranas_periode DROP COLUMN verification_ended_at timestamp(6)");
    }
}
