drop enabled column fix
This commit is contained in:
parent
2c96ef05f1
commit
c8824763b9
@ -26,7 +26,7 @@ class DropEnabledColumnReportsTable extends Migration
|
|||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('reports', function (Blueprint $table) {
|
Schema::table('reports', function (Blueprint $table) {
|
||||||
$table->boolean('enabled');
|
$table->boolean('enabled')->default(1);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user