rooms
parent
1fe2f33eba
commit
241bb99dee
11
dbmodels.go
11
dbmodels.go
|
@ -220,4 +220,15 @@ var (
|
|||
},
|
||||
PartKey: []string{"user_id", "room_id"},
|
||||
})
|
||||
|
||||
DbMRoomUsersHelperPKRoomId = table.New(table.Metadata{
|
||||
Name: "room_users",
|
||||
Columns: []string{
|
||||
"user_id",
|
||||
"room_id",
|
||||
"role",
|
||||
"joined_at",
|
||||
},
|
||||
PartKey: []string{"room_id"},
|
||||
})
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue