Used consistent phrasing in query

This commit is contained in:
snipe 2020-10-23 14:22:15 -07:00
parent be0e327221
commit 7987a4eca4

View file

@ -21,7 +21,7 @@ class FixZeroValuesForLocations extends Migration
App\Models\Asset::where('rtd_location_id', '=', '0')
->update(['rtd_location_id' => null]);
App\Models\User::where('location_id', '0')
App\Models\User::where('location_id', '=', '0')
->update(['location_id' => null]);
}