93a97b0865
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
16 lines
251 B
Elixir
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
|