Formatting fix

This commit is contained in:
Dane Everitt 2018-02-25 16:10:28 -06:00
parent 4cfb8941d5
commit aa08498d51
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -20,7 +20,7 @@ class RemoveDefaultNullValueOnTable extends Migration
});
DB::transaction(function () {
DB::table('users')->where('external_id', '=' , 'NULL')->update([
DB::table('users')->where('external_id', '=', 'NULL')->update([
'external_id' => null,
]);
});