559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
16 lines
236 B
Elixir
16 lines
236 B
Elixir
defmodule Mobilizon.Repo.Migrations.AddUUIDIdToEvents do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
alter table(:events) do
|
|
add :uuid, :uuid
|
|
end
|
|
end
|
|
|
|
def down do
|
|
alter table(:events) do
|
|
remove :uuid
|
|
end
|
|
end
|
|
end
|