Skip to content

Commit

Permalink
#5885 removed unnecessary select from migration
Browse files Browse the repository at this point in the history
  • Loading branch information
touhidurabir committed Feb 19, 2024
1 parent c6c83e5 commit 8cf585d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,12 @@ public function up(): void
public function down(): void
{
DB::table($this->getContextSettingsTable())
->select(['setting_name'])
->where('setting_name', 'numDaysAfterReviewResponseReminderDue')
->update([
'setting_name' => 'numDaysBeforeInviteReminder'
]);

DB::table($this->getContextSettingsTable())
->select(['setting_name'])
->where('setting_name', 'numDaysAfterReviewSubmitReminderDue')
->update([
'setting_name' => 'numDaysBeforeSubmitReminder'
Expand Down

0 comments on commit 8cf585d

Please sign in to comment.