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: utils/db-schema-update/0.82.0-unreleased.sql
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,8 @@ ALTER TABLE `message`
63
63
CHANGE COLUMN `user_shared``users_shared`TEXT,
64
64
ADD COLUMN `boost_added`TEXTNULL COMMENT 'Service message: user boosted the chat' AFTER `proximity_alert_triggered`,
65
65
ADD COLUMN `quote`TEXTNULL DEFAULT NULL COMMENT 'Optional. For replies that quote part of the original message, the quoted part of the message' AFTER `external_reply`,
66
-
ADD COLUMN `reply_to_story`TEXTNULL DEFAULT NULL COMMENT 'Optional. For replies to a story, the original story' AFTER `quote`;
66
+
ADD COLUMN `reply_to_story`TEXTNULL DEFAULT NULL COMMENT 'Optional. For replies to a story, the original story' AFTER `quote`,
67
+
ADD COLUMN `sender_boost_count`bigintNULL COMMENT 'If the sender of the message boosted the chat, the number of boosts added by the user' AFTER `user_id`;
67
68
68
69
ALTERTABLE`telegram_update`
69
70
ADD COLUMN `message_reaction_id`bigint UNSIGNED DEFAULT NULL COMMENT 'A reaction to a message was changed by a user' AFTER `edited_channel_post_id`,
0 commit comments