mirror of
https://github.com/flarum/core.git
synced 2025-08-02 14:37:49 +02:00
Add missing fields to migration. Closes #1
This commit is contained in:
@@ -15,8 +15,11 @@ class CreateCategoriesTable extends Migration
|
||||
Schema::create('categories', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('title');
|
||||
$table->string('slug');
|
||||
$table->text('description');
|
||||
$table->string('color');
|
||||
$table->integer('discussions_count')->unsigned()->default(0);
|
||||
$table->integer('position')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user