mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-07 09:21:35 +00:00
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
|