Added registration-ticket

Added registration type tickets that will used in the check-in process
This commit is contained in:
siddhantbajaj 2017-08-07 15:10:06 +05:30
parent 9b7562fe2e
commit f31651ad9c
5 changed files with 12 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddRegistrationTicketToTickets < ActiveRecord::Migration
def change
add_column :tickets, :registration_ticket, :boolean, default: false
end
end