Skip to content

Commit

Permalink
Merge pull request #3 from sroutier/master
Browse files Browse the repository at this point in the history
Fix migration that fails on field read.
  • Loading branch information
nikolajlovenhardt authored Jun 21, 2016
2 parents 6830213 + 94cca00 commit 7ac6474
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function up()
$table->text('text');
$table->dateTime('date');
$table->string('user', 255);
$table->integer('read', 2);
$table->boolean('read')->default(false);
});
}

Expand Down

0 comments on commit 7ac6474

Please sign in to comment.