analytics/priv/repo/migrations/20201208173543_add_spike_notifications.exs
Uku Taht 54f70717c4 Add basic spike notifications
Co-authored-by: Jerod Santo <jerod@changelog.com>
2020-12-11 17:03:25 +02:00

15 lines
380 B
Elixir

defmodule Plausible.Repo.Migrations.AddSpikeNotifications do
use Ecto.Migration
def change do
create table(:spike_notifications) do
add :site_id, references(:sites), null: false
add :threshold, :integer, null: false
add :last_sent, :naive_datetime
add :recipients, {:array, :citext}, null: false, default: []
timestamps()
end
end
end