Current section

Files

Jump to
blossom lib blossom migrations postgres v10.ex
Raw

lib/blossom/migrations/postgres/v10.ex

defmodule Blossom.Migrations.Postgres.V10 do
use Ecto.Migration
def up(_opts) do
alter table(:organizations) do
add(:autojoin, :boolean, default: false)
add(:autojoin_role, :text)
end
end
def down(_opts) do
alter table(:organizations) do
remove(:autojoin_role, :text)
remove(:autojoin, :boolean, default: false)
end
end
end