mobilizon.chapril.org-mobil.../priv/repo/migrations/20180702154630_remove_slug_for_event.exs
Thomas Citharel 93a97b0865 Some work
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-07-04 14:29:17 +02:00

16 lines
251 B
Elixir

defmodule Eventos.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