analytics/priv/repo/migrations/20221228123226_cascade_delete_sent_renewal_notifications.exs

12 lines
354 B
Elixir
Raw Normal View History

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