Skip to content

Commit

Permalink
drop enabled column fix
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Nov 19, 2019
1 parent 2c96ef0 commit c882476
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function up()
public function down()
{
Schema::table('reports', function (Blueprint $table) {
$table->boolean('enabled');
$table->boolean('enabled')->default(1);
});
}
}

0 comments on commit c882476

Please sign in to comment.