mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-01 21:52:19 +01:00
9 lines
223 B
Ruby
9 lines
223 B
Ruby
# 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
|