analytics/priv/repo/migrations/20240221122626_shield_country_rules.exs
hq1 b7b5dcf4c9
Migration: add country rules (#3834)
* Migration: add country rules

* Make `country_code` not nullable
2024-02-27 11:52:00 +01:00

17 lines
518 B
Elixir

defmodule Plausible.Repo.Migrations.ShieldCountryRules do
use Ecto.Migration
def change do
create table(:shield_rules_country, primary_key: false) do
add(:id, :uuid, primary_key: true)
add :site_id, references(:sites, on_delete: :delete_all), null: false
add :country_code, :text, null: false
add :action, :string, default: "deny", null: false
add :added_by, :string
timestamps()
end
create unique_index(:shield_rules_country, [:site_id, :country_code])
end
end