1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 09:26:34 +02:00

Merge pull request #20 from OlivierBarbier/fix-tags-migration

Fix last_time type
This commit is contained in:
Franz Liedke
2015-08-28 16:03:52 +02:00

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();
});