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