mirror of
https://github.com/flarum/core.git
synced 2025-08-08 09:26:34 +02:00
Fix last_time type
This commit is contained in:
@@ -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();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user