Skip to content
Snippets Groups Projects
Commit 0b4c430b authored by Uku Taht's avatar Uku Taht
Browse files

Cascade site deletion to invitations

parent adf9c1ac
No related branches found
No related tags found
No related merge requests found
defmodule Plausible.Repo.Migrations.CascadeSiteDeletionToInvitations do
use Ecto.Migration
def change do
drop constraint("invitations", "invitations_site_id_fkey")
alter table(:invitations) do
modify :site_id, references(:sites, on_delete: :delete_all), null: false
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment