analytics/priv/repo/migrations/20221228123226_cascade_delete_sent_renewal_notifications.exs
Vini Brasil b6d30019ef
Cascade delete sent_renewal_notifications table when user is deleted (#2549)
* 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
2023-01-02 11:46:18 -03:00

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