index.community/backend/priv/repo/migrations/20190724114437_add_instance...

10 lines
165 B
Elixir

defmodule Backend.Repo.Migrations.AddInstanceType do
use Ecto.Migration
def change do
alter table(:instances) do
add :type, :string
end
end
end