Use new shortcuts for migrations

This commit is contained in:
Franz Liedke 2016-03-04 01:10:25 +09:00
parent 32519c47de
commit bba105748b

View File

@ -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]
]);