15 lines
266 B
PHP
15 lines
266 B
PHP
|
<?php
|
||
|
use Sakura\Migration\IMigration;
|
||
|
use Sakura\DB;
|
||
|
//https://github.com/flashwave/sakura/commit/0264bbd574ff5a0e701b4331e1fbf55ca3d95ee0
|
||
|
class BreadOfTheFuture implements IMigration
|
||
|
{
|
||
|
public function up()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
}
|
||
|
}
|