index.community/backend/priv/repo/migrations/20190725120819_add_base_domain.exs
2019-07-25 15:56:03 +00:00

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