mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
12 lines
306 B
Elixir
12 lines
306 B
Elixir
defmodule Plausible.Repo.Migrations.CascadeSiteDeletion do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop constraint("site_memberships", "site_memberships_site_id_fkey")
|
|
|
|
alter table(:site_memberships) do
|
|
modify :site_id, references(:sites, on_delete: :delete_all), null: false
|
|
end
|
|
end
|
|
end
|