mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
b6d30019ef
* Cascade delete sent_renewal_notifications table when user is deleted This commit fixes a bug when deleting a user would trigger a constraint error. * Update CHANGELOG.md
12 lines
354 B
Elixir
12 lines
354 B
Elixir
defmodule Plausible.Repo.Migrations.CascadeDeleteSentRenewalNotifications do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop constraint("sent_renewal_notifications", "sent_renewal_notifications_user_id_fkey")
|
|
|
|
alter table(:sent_renewal_notifications) do
|
|
modify :user_id, references(:users, on_delete: :delete_all), null: false
|
|
end
|
|
end
|
|
end
|