Skip to content

Commit

Permalink
pkp#8333 ...but do rename the column
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Sep 20, 2024
1 parent 0bbc4e5 commit 5f0413d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ protected function setupFieldSchema(): void
}

Schema::table('email_log', fn (Blueprint $table) => $table->bigInteger('sender_id')->nullable()->default(null)->change());
Schema::table('notification_subscription_settings', function (Blueprint $table) {
$table->renameColumn('context', 'context_id');
});
}

/**
Expand Down

0 comments on commit 5f0413d

Please sign in to comment.