mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 02:30:10 +08:00
19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Schema\Builder;
|
|
|
|
return [
|
|
'up' => function (Builder $schema) {
|
|
$schema->table('{{table}}', function (Blueprint $table) {
|
|
//
|
|
});
|
|
},
|
|
|
|
'down' => function (Builder $schema) {
|
|
$schema->table('{{table}}', function (Blueprint $table) {
|
|
//
|
|
});
|
|
}
|
|
];
|