The URL is shown on the schedule and the event/proposal page. The URL is only when a user is logged in and registered.
5 lines
109 B
Ruby
5 lines
109 B
Ruby
class AddUrlToRooms < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :rooms, :url, :text
|
|
end
|
|
end
|