analytics/priv/repo/migrations/20231127132321_remove_custom_domains.exs

8 lines
139 B
Elixir
Raw Normal View History

defmodule Plausible.Repo.Migrations.RemoveCustomDomains do
use Ecto.Migration
def change do
drop table(:custom_domains)
end
end