mobilizon.chapril.org-mobil.../priv/repo/migrations/20180515091106_add_url_fiel...

16 lines
276 B
Elixir

defmodule Mobilizon.Repo.Migrations.AddUrlFieldToEvents do
use Ecto.Migration
def up do
alter table("events") do
add(:url, :string, null: false, default: "https://")
end
end
def down do
alter table("events") do
remove(:url)
end
end
end