2015-09-17 10:46:38 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
2016-02-24 22:20:33 +08:00
|
|
|
use Illuminate\Database\Schema\Builder;
|
2015-09-17 10:46:38 +08:00
|
|
|
|
2016-02-24 22:20:33 +08:00
|
|
|
return [
|
|
|
|
'up' => function (Builder $schema) {
|
|
|
|
$schema->table('{{table}}', function (Blueprint $table) {
|
2015-09-17 10:46:38 +08:00
|
|
|
//
|
|
|
|
});
|
2016-02-24 22:20:33 +08:00
|
|
|
},
|
2015-09-17 10:46:38 +08:00
|
|
|
|
2016-02-24 22:20:33 +08:00
|
|
|
'down' => function (Builder $schema) {
|
|
|
|
$schema->table('{{table}}', function (Blueprint $table) {
|
2015-09-17 10:46:38 +08:00
|
|
|
//
|
|
|
|
});
|
|
|
|
}
|
2016-02-24 22:20:33 +08:00
|
|
|
];
|