Skip to content

Commit 8f9cd11

Browse files
authored
Merge pull request #1468 from r3bers/patch-2
2 parents e86aca6 + efbbd53 commit 8f9cd11

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

utils/db-schema-update/0.82.0-0.83.0.sql

+6
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,9 @@ ALTER TABLE `message`
6969
ALTER TABLE `telegram_update`
7070
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`,
7171
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+
73+
ALTER TABLE `telegram_update` ADD COLUMN `chat_boost_updated_id` BIGINT UNSIGNED NULL COMMENT 'A boost update the chat has been sent';
74+
ALTER TABLE `telegram_update` ADD FOREIGN KEY (`chat_boost_updated_id`) REFERENCES `chat_boost_updated` (`id`);
75+
76+
ALTER TABLE `telegram_update` ADD COLUMN `chat_boost_removed_id` BIGINT UNSIGNED NULL COMMENT 'A boost remove from the chat has been sent';
77+
ALTER TABLE `telegram_update` ADD FOREIGN KEY (`chat_boost_removed_id`) REFERENCES `chat_boost_removed` (`id`);

0 commit comments

Comments
 (0)