ddad462076
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
180 B
Elixir
10 lines
180 B
Elixir
defmodule Elixir.Mobilizon.Repo.Migrations.EventAddDescriptionSlug do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:events) do
|
|
add(:slug, :string)
|
|
end
|
|
end
|
|
end
|