analytics/priv/repo/migrations/20231219083050_track_accept_traffic_until_notifcations.exs
hq1 1678fa10f4
Migrations for #3641 (#3644)
* Migrations for #3641

* Fix typo
2023-12-20 15:40:39 +01:00

13 lines
397 B
Elixir

defmodule Plausible.Repo.Migrations.TrackAcceptTrafficUntilNotifcations do
use Ecto.Migration
def change do
create table(:sent_accept_traffic_until_notifications) do
add :user_id, references(:users, on_delete: :delete_all), null: false
add :sent_on, :date, null: false
end
create unique_index(:sent_accept_traffic_until_notifications, [:user_id, :sent_on])
end
end