Support forcing the order of rooms in the schedule

This commit is contained in:
Michael Ball 2020-07-16 11:25:20 -07:00
parent 02f0d4a254
commit a9d6faf1a3
6 changed files with 17 additions and 6 deletions

View file

@ -0,0 +1,5 @@
class AddOrderToRooms < ActiveRecord::Migration[5.2]
def change
add_column :rooms, :order, :int
end
end