1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 01:16:52 +02:00

Fix last_time type

This commit is contained in:
Olivier Barbier
2015-08-28 15:56:08 +02:00
parent 845a8bbcd8
commit 66416bbeb3

View File

@@ -30,7 +30,7 @@ class CreateTagsTable extends Migration
$table->boolean('is_hidden')->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();
});