analytics/priv/repo/migrations/20240702055817_traffic_drop_notifications.exs

14 lines
320 B
Elixir
Raw Normal View History

defmodule Plausible.Repo.Migrations.TrafficDropNotifications do
use Ecto.Migration
def change do
drop index(:spike_notifications, [:site_id])
alter table(:spike_notifications) do
add :type, :string, default: "spike"
end
create unique_index(:spike_notifications, [:site_id, :type])
end
end