defmodule Mobilizon.Storage.Repo.Migrations.AddHideNumberOfParticipantsToEvents do use Ecto.Migration def change do alter table(:events) do add(:hide_number_of_participants, :boolean, default: false, null: false) end end end