@@ -0,0 +1,15 @@
|
||||
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
|
||||
Reference in New Issue
Block a user