osem-fcy/db/migrate/20170807092805_add_registration_ticket_to_tickets.rb
siddhantbajaj f31651ad9c Added registration-ticket
Added registration type tickets that will used in the check-in process
2017-08-10 21:15:54 +05:30

5 lines
158 B
Ruby

class AddRegistrationTicketToTickets < ActiveRecord::Migration
def change
add_column :tickets, :registration_ticket, :boolean, default: false
end
end