mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 12:43:52 +08:00
Use new shortcuts for migrations
This commit is contained in:
parent
32519c47de
commit
bba105748b
|
@ -8,19 +8,8 @@
|
|||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Schema\Builder;
|
||||
use Flarum\Database\Migration;
|
||||
|
||||
return [
|
||||
'up' => function (Builder $schema) {
|
||||
$schema->table('posts', function (Blueprint $table) {
|
||||
$table->boolean('is_spam')->default(0);
|
||||
});
|
||||
},
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('posts', function (Blueprint $table) {
|
||||
$table->dropColumn('is_spam');
|
||||
});
|
||||
}
|
||||
];
|
||||
return Migration::addColumns('posts', [
|
||||
'is_spam' => ['boolean', 'default' => 0]
|
||||
]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user