v1.0.82
alex 2023-03-10 23:01:33 +01:00
parent 1fe2f33eba
commit 241bb99dee
1 changed files with 11 additions and 0 deletions

View File

@ -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"},
})
)