mobilizon.chapril.org-mobil.../priv/repo/migrations/20191023143659_move_partici...

16 lines
282 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.MoveParticipantsStatsToEvent do
use Ecto.Migration
def up do
alter table(:events) do
add(:participant_stats, :map)
end
end
def down do
alter table(:events) do
remove(:participant_stats)
end
end
end