<?php 

use Phalcon\Db\Column;
use Phalcon\Db\Index;
use Phalcon\Db\Reference;
use Phalcon\Mvc\Model\Migration;

class MartDataKorsupgahMigration_169 extends Migration {
    /**
     * Run the migrations
     *
     * @return void
     */
    public function up()
    {
        $backupSql = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'mart_data_korsupgah.sql');
        self::$connection->execute($backupSql);
    }

    /**
     * Reverse the migrations
     *
     * @return void
     */
    public function down()
    { 
      
    }
}

?>