mirror of
https://github.com/flarum/framework.git
synced 2025-02-24 06:53:10 +08:00
Merge pull request #20 from OlivierBarbier/fix-tags-migration
Fix last_time type
This commit is contained in:
commit
21338c3d75
@ -30,7 +30,7 @@ class CreateTagsTable extends Migration
|
|||||||
$table->boolean('is_hidden')->default(0);
|
$table->boolean('is_hidden')->default(0);
|
||||||
|
|
||||||
$table->integer('discussions_count')->unsigned()->default(0);
|
$table->integer('discussions_count')->unsigned()->default(0);
|
||||||
$table->integer('last_time')->unsigned()->nullable();
|
$table->dateTime('last_time')->nullable();
|
||||||
$table->integer('last_discussion_id')->unsigned()->nullable();
|
$table->integer('last_discussion_id')->unsigned()->nullable();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user