forked from External/greenlight
GRN2-253: Added the ability to share rooms across multiple users (#912)
* Added ability to share rooms with other users * Fixed testcases
This commit is contained in:
committed by
farhatahmad
parent
8cbfc3f730
commit
967130e57c
12
db/migrate/20191128212935_create_shared_accesses.rb
Normal file
12
db/migrate/20191128212935_create_shared_accesses.rb
Normal file
@ -0,0 +1,12 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class CreateSharedAccesses < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :shared_accesses do |t|
|
||||
t.belongs_to :room, foreign_key: true
|
||||
t.references :user, foreign_key: true
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user