<?php

use Phalcon\Mvc\Model\Migration;

class UpdateMasterProvKabKotaMigration_502 extends Migration {
    public function up()
    {
        $sql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'update_kota_kabupaten.sql');
        self::$connection->execute($sql);
    }

    public function down()
    {
        $sql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'revert_kota_kabupaten.sql');
        self::$connection->execute($sql);
    }
}
