parent
1944c40311
commit
ddeea128a4
|
@ -202,6 +202,7 @@ var (
|
|||
Name: "rooms",
|
||||
Columns: []string{
|
||||
"id",
|
||||
"state",
|
||||
"sync_count",
|
||||
"last_changes",
|
||||
"created_at",
|
||||
|
|
|
@ -66,6 +66,7 @@ type UserSignUpProcess struct {
|
|||
// TABLE rooms
|
||||
type Room struct {
|
||||
Id string
|
||||
State uint8
|
||||
// Represents the current number of message activities in a chat. This includes reactions to messages, replying to messages, deleting messages, and more
|
||||
SyncCount int
|
||||
// Contains number X of last changes like messages, reactions, replies
|
||||
|
|
Loading…
Reference in New Issue