osem-fcy/db/migrate/20200710215300_add_url_to_rooms.rb
Michael Ball 7d2135f851 Add the ability for Rooms to have a URL.
The URL is shown on the schedule and the event/proposal page.
The URL is only when a user is logged in and registered.
2020-07-10 20:18:10 -07:00

5 lines
109 B
Ruby

class AddUrlToRooms < ActiveRecord::Migration[5.2]
def change
add_column :rooms, :url, :text
end
end