Make ticket layout configurable

Added option for conference organizer to switch between ticket layouts (horizontal or vertical). Added test for the same.
This commit is contained in:
siddhantbajaj 2017-06-30 05:26:21 +05:30
parent e25de318bd
commit dd52a9b2ab
10 changed files with 38 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddTicketLayoutToConferences < ActiveRecord::Migration
def change
add_column :conferences, :ticket_layout, :integer, default: 0
end
end