Skip to content

Commit

Permalink
Explicitly create tags table with InnoDB engine
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Dec 4, 2018
1 parent 5d07f27 commit 2db60ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions migrations/2015_02_24_000000_create_tags_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
$table->integer('discussions_count')->unsigned()->default(0);
$table->dateTime('last_time')->nullable();
$table->integer('last_discussion_id')->unsigned()->nullable();

$table->engine = 'InnoDB';
});

$schema->getConnection()->table('tags')->insert([
Expand Down

0 comments on commit 2db60ed

Please sign in to comment.