Fixed migration

This commit is contained in:
Constantin Graf
2024-06-13 16:24:52 +02:00
committed by Constantin Graf
parent bb8c944df5
commit 9a920bd4e9
@@ -23,6 +23,9 @@ return new class extends Migration
DB::table('members')
->where('billable_rate', '=', 0)
->update(['billable_rate' => null]);
DB::table('time_entries')
->where('billable_rate', '=', 0)
->update(['billable_rate' => null]);
}
/**