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
`message_thread_id`bigint(20) DEFAULT NULL COMMENT 'Unique identifier of a message thread to which the message belongs; for supergroups only',
77
78
`user_id`bigintNULL COMMENT 'Unique user identifier',
78
79
`date`timestampNULL DEFAULT NULL COMMENT 'Date the message was sent in timestamp format',
79
80
`forward_from`bigintNULL DEFAULT NULL COMMENT 'Unique user identifier, sender of the original message',
@@ -82,6 +83,7 @@ CREATE TABLE IF NOT EXISTS `message` (
82
83
`forward_signature`TEXTNULL DEFAULT NULL COMMENT 'For messages forwarded from channels, signature of the post author if present',
83
84
`forward_sender_name`TEXTNULL DEFAULT NULL COMMENT 'Sender''s name for messages forwarded from users who disallow adding a link to their account in forwarded messages',
84
85
`forward_date`timestampNULL DEFAULT NULL COMMENT 'date the original message was sent in timestamp format',
86
+
`is_topic_message`tinyint(1) DEFAULT 0 COMMENT 'True, if the message is sent to a forum topic',
85
87
`is_automatic_forward`tinyint(1) DEFAULT 0 COMMENT 'True, if the message is a channel post that was automatically forwarded to the connected discussion group',
`proximity_alert_triggered`TEXTNULL COMMENT 'Service message. A user in the chat triggered another user''s proximity alert while sharing Live Location.',
130
+
`forum_topic_created`TEXT DEFAULT NULL COMMENT 'Service message: forum topic created',
131
+
`forum_topic_closed`TEXT DEFAULT NULL COMMENT 'Service message: forum topic closed',
132
+
`forum_topic_reopened`TEXT DEFAULT NULL COMMENT 'Service message: forum topic reopened',
128
133
`video_chat_scheduled`TEXT COMMENT 'Service message: video chat scheduled',
129
134
`video_chat_started`TEXT COMMENT 'Service message: video chat started',
130
135
`video_chat_ended`TEXT COMMENT 'Service message: video chat ended',
0 commit comments