added room id to connections table

This commit is contained in:
Beatrice Olivera
2018-08-29 11:39:51 +01:00
parent 40c2b34ca3
commit 97aee2c10f
3 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddColumnToConnections < ActiveRecord::Migration[5.2]
def change
add_column :connections, :room_id, :string
end
end