2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.RemoveSlugForEvent do
|
2018-07-04 14:29:17 +02:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
|
|
|
alter table(:events) do
|
|
|
|
remove(:slug)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table(:events) do
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:slug, :string, null: false)
|
2018-07-04 14:29:17 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|