mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 08:39:25 +08:00
Use new shortcuts for migrations
This commit is contained in:
parent
3b6fc53f91
commit
da664d1624
@ -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('discussions', function (Blueprint $table) {
|
||||
$table->boolean('is_sticky')->default(0);
|
||||
});
|
||||
},
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('discussions', function (Blueprint $table) {
|
||||
$table->dropColumn('is_sticky');
|
||||
});
|
||||
}
|
||||
];
|
||||
return Migration::addColumns('discussions', [
|
||||
'is_sticky' => ['boolean', 'default' => 0]
|
||||
]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user