mobilizon.chapril.org-mobil.../priv/repo/migrations/20180702154630_remove_slug_for_event.exs
Thomas Citharel 559c889f1b Rename project to Mobilizon
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-10-11 17:37:39 +02:00

16 lines
253 B
Elixir

defmodule Mobilizon.Repo.Migrations.RemoveSlugForEvent do
use Ecto.Migration
def up do
alter table(:events) do
remove(:slug)
end
end
def down do
alter table(:events) do
add :slug, :string, null: false
end
end
end