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

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2018_08_27_151325) do
ActiveRecord::Schema.define(version: 2018_08_29_102007) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -18,6 +18,7 @@ ActiveRecord::Schema.define(version: 2018_08_27_151325) do
create_table "connections", force: :cascade do |t|
t.bigint "user_id"
t.bigint "contact_id"
t.string "room_id"
t.index ["contact_id"], name: "index_connections_on_contact_id"
t.index ["user_id"], name: "index_connections_on_user_id"
end