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: structure.sql
+5-1
Original file line number
Diff line number
Diff line change
@@ -378,6 +378,8 @@ CREATE TABLE IF NOT EXISTS `telegram_update` (
378
378
`my_chat_member_updated_id`BIGINT UNSIGNED NULL COMMENT 'The bot''s chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user.',
379
379
`chat_member_updated_id`BIGINT UNSIGNED NULL COMMENT 'A chat member''s status was updated in a chat. The bot must be an administrator in the chat and must explicitly specify “chat_member” in the list of allowed_updates to receive these updates.',
380
380
`chat_join_request_id`BIGINT UNSIGNED NULL COMMENT 'A request to join the chat has been sent',
381
+
`chat_boost_updated_id`BIGINT UNSIGNED NULL COMMENT 'A chat boost was added or changed.',
382
+
`chat_boost_removed_id`BIGINT UNSIGNED NULL COMMENT 'A boost was removed from a chat.',
381
383
382
384
PRIMARY KEY (`id`),
383
385
KEY `message_id` (`message_id`),
@@ -409,7 +411,9 @@ CREATE TABLE IF NOT EXISTS `telegram_update` (
Copy file name to clipboardexpand all lines: utils/db-schema-update/0.82.0-0.83.0.sql
+2-2
Original file line number
Diff line number
Diff line change
@@ -70,8 +70,8 @@ ALTER TABLE `telegram_update`
70
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`,
71
71
ADD COLUMN `message_reaction_count_id`bigint UNSIGNED DEFAULT NULL COMMENT 'Reactions to a message with anonymous reactions were changed' AFTER `message_reaction_id`;
72
72
73
-
ALTERTABLE`telegram_update` ADD COLUMN `chat_boost_updated_id`BIGINT UNSIGNED NULL COMMENT 'A boost update the chat has been sent';
73
+
ALTERTABLE`telegram_update` ADD COLUMN `chat_boost_updated_id`BIGINT UNSIGNED NULL COMMENT 'A chat boost was added or changed.';
0 commit comments