Odyssey
2017013000_initial.php
1 <?php
2 
3 use Phinx\Migration\AbstractMigration;
4 
5 class Initial extends AbstractMigration
6 {
7  public function up()
8  {
9 
10  //$this->execute(file_get_contents(str_replace('.php', '.sql', __FILE__)));
11  // ** Load the default schema
12  $this->execute(file_get_contents(__DIR__ . '/2017013000_initial_schema.sql'));
13  // ** Load the default data
14  $this->execute(file_get_contents(__DIR__ . '/2017013000_initial_data.sql'));
15  }
16 }
17 
18 ?>