analytics/priv/repo/migrations/20190618165016_add_public_sites.exs
Adam baa04be191
Remove obsolete migration config (#2769)
The compilation warning advises to use `Application.compile_env/3`
however there is no `:url` environment setting under `:plausible` key
anyway, so we might as well get rid of it completely.
2023-03-22 11:32:24 +02:00

10 lines
194 B
Elixir

defmodule Plausible.Repo.Migrations.AddPublicSites do
use Ecto.Migration
def change do
alter table(:sites) do
add :public, :boolean, null: false, default: false
end
end
end