mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 16:03:25 +00:00
ddad462076
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
180 B
Elixir
9 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
|