Skip to content

Commit

Permalink
Fixed migration
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed Jun 13, 2024
1 parent bb8c944 commit 9a920bd
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public function up(): void
DB::table('members')
->where('billable_rate', '=', 0)
->update(['billable_rate' => null]);
DB::table('time_entries')
->where('billable_rate', '=', 0)
->update(['billable_rate' => null]);
}

/**
Expand Down

0 comments on commit 9a920bd

Please sign in to comment.