class AddInPersonPaymentsToAdmissionConfig < ActiveRecord::Migration[6.0]
  def change
    add_column :admission_configs, :in_person_payment, :boolean, null: false, default: false,
      after: :online_payment
  end
end
