analytics/priv/repo/migrations/20200406115153_cascade_custom_domain_deletion.exs
2020-04-06 14:53:31 +03:00

12 lines
308 B
Elixir

defmodule Plausible.Repo.Migrations.CascadeCustomDomainDeletion do
use Ecto.Migration
def change do
drop constraint("custom_domains", "custom_domains_site_id_fkey")
alter table(:custom_domains) do
modify :site_id, references(:sites, on_delete: :delete_all), null: false
end
end
end