index.community/backend/priv/repo/migrations/20190725120819_add_base_dom...

12 lines
216 B
Elixir

defmodule Backend.Repo.Migrations.AddBaseDomain do
use Ecto.Migration
def change do
alter table(:instances) do
add :base_domain, :string
end
create index(:instances, [:base_domain])
end
end