<?php

use Phalcon\Mvc\Model\Migration;

class AlterTableSekolahMigration_563 extends Migration {
    public function up() {
        self::$connection->execute("
            ALTER TABLE jaga.sekolah ADD COLUMN IF NOT EXISTS deleted_at timestamp(6);
        ");
    }
    public function down() {
        self::$connection->execute("
            ALTER TABLE jaga.sekolah DROP COLUMN IF EXISTS deleted_at;
        ");
    }
}