mirror of
https://github.com/plausible/analytics.git
synced 2024-11-30 00:58:54 +03:00
baa04be191
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.
10 lines
194 B
Elixir
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
|