Don't use backticks as this breaks in Postgres

This commit is contained in:
James Brooks
2016-10-30 17:45:50 +00:00
parent fbb59ea66e
commit 804d02fbdc

View File

@@ -28,7 +28,7 @@ class AlterTableIncidentsAddOccurredAtColumn extends Migration
});
// We need a better way of handling data migrations...
DB::update('UPDATE incidents SET `occurred_at` = `created_at`');
DB::update('UPDATE incidents SET occurred_at = created_at');
}
/**