mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Added option for conference organizer to switch between ticket layouts (horizontal or vertical). Added test for the same.
5 lines
150 B
Ruby
5 lines
150 B
Ruby
class AddTicketLayoutToConferences < ActiveRecord::Migration
|
|
def change
|
|
add_column :conferences, :ticket_layout, :integer, default: 0
|
|
end
|
|
end
|