<?php

class PerbaikanDataOPDIntExtExpMigration_496 extends \Phalcon\Mvc\Model\Migration {
    public function up()
    {
        $sql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'update_spi_internal_opd_detail.sql');
        self::$connection->execute($sql);

        $sql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'update_spi_external_opd_detail.sql');
        self::$connection->execute($sql);

        $sql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'update_spi_expert_opd_detail.sql');
        self::$connection->execute($sql);
    }

    public function down()
    {
    }
}
