forked from External/greenlight
* Added the ability to set room settings on create or update * Added room settings alerts and made fixes to other alerts * Small bug fixes related to rubocop and the create room modal * Update test case and fixed issue with small edge case * Update room.js
8 lines
176 B
Ruby
8 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddRoomSettingsToRoom < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :rooms, :room_settings, :string, default: "{ }"
|
|
end
|
|
end
|