Fix rollback of AlterTableIncidentsRemoveScheduledColumns
This commit is contained in:
@@ -44,7 +44,7 @@ class AlterTableIncidentsRemoveScheduledColumns extends Migration
|
|||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('incidents', function (Blueprint $table) {
|
Schema::table('incidents', function (Blueprint $table) {
|
||||||
$table->timestamp('scheduled_at')->after('user_id')->nullable()->default(null);
|
$table->timestamp('scheduled_at')->before('created_at')->nullable()->default(null);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user