1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-02 22:52:21 +01:00
fab-manager/db/migrate/20230509121907_add_booking_nominative_to_event.rb

9 lines
223 B
Ruby
Raw Normal View History

2023-05-09 18:54:16 +02:00
# frozen_string_literal: true
# add booking_nominative to event
class AddBookingNominativeToEvent < ActiveRecord::Migration[7.0]
def change
add_column :events, :booking_nominative, :boolean, default: false
end
end