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
ADD COLUMN `is_topic_message`TINYINT(1) DEFAULT 0 COMMENT 'True, if the message is sent to a forum topic' AFTER `forward_date`,
3
+
ADD COLUMN `message_thread_id`BIGINT(20) NULL DEFAULT NULL COMMENT 'Unique identifier of a message thread to which the message belongs; for supergroups only' AFTER `id`,
4
+
ADD COLUMN `forum_topic_created`TEXTNULL DEFAULT NULL COMMENT 'Service message: forum topic created' AFTER `proximity_alert_triggered`,
5
+
ADD COLUMN `forum_topic_closed`TEXTNULL DEFAULT NULL COMMENT 'Service message: forum topic closed' AFTER `forum_topic_created`,
6
+
ADD COLUMN `forum_topic_reopened`TEXTNULL DEFAULT NULL COMMENT 'Service message: forum topic reopened' AFTER `forum_topic_closed`;
0 commit comments