Passed
Push — master ( 33ca92...23b088 )
by Ahmad
10:28
created

AddRoomSettingsToRoom.change()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
# frozen_string_literal: true
2
3
class AddRoomSettingsToRoom < ActiveRecord::Migration[5.0]
4
  def change
5
    add_column :rooms, :room_settings, :string, default: "{ }"
6
  end
7
end
8