5f3d1f89df
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
179 B
Elixir
10 lines
179 B
Elixir
defmodule Mobilizon.Storage.Repo.Migrations.AddMetadataForEvents do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:events) do
|
|
add(:metadata, :map)
|
|
end
|
|
end
|
|
end
|