You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/integrations/extensions/data-sync.mdx
+8
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ Below is a description of the columns included in the table and the data type of
74
74
has_been_clicked bigint ENCODE az64,
75
75
has_been_interacted bigint ENCODE az64,
76
76
has_been_archived bigint ENCODE az64,
77
+
actors character varying(65535) ENCODE lzo
77
78
PRIMARY KEY (message_id)
78
79
) DISTSTYLE KEY SORTKEY (message_id, updated_at);
79
80
```
@@ -240,6 +241,13 @@ Below is a description of the columns included in the table and the data type of
240
241
"integer (0 = false, 1 = true)",
241
242
"Whether the message has been archived",
242
243
],
244
+
[
245
+
"actors",
246
+
"json",
247
+
<divkey="actors">
248
+
A JSON array of actor users or objects. Users are provided as string IDs. Objects are provided as JSON dictionaries with keys for "id" and "collection". See the <atarget="_blank"rel="noreferrer"href="/concepts/recipients#recipientidentifier-definition"><code>RecipientIdentifier</code> definition</a> for more info.
0 commit comments