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
`id`BIGINT UNSIGNED COMMENT 'Unique identifier for this entry',
43
-
`invite_link`VARCHAR(2083) CHARACTER SET'ascii' COLLATE 'ascii_general_ci'NOT NULL COMMENT 'The invite link. If the link was created by another chat administrator, then the second part of the link will be replaced with “…”',
44
-
# IE7 has a 2083 character limit for HTTP GET operations: http://support.microsoft.com/kb/208427
45
-
`creator_id`BIGINTNOT NULL COMMENT 'Creator of the link',
46
-
`is_primary`BOOLEANNOT NULL COMMENT 'True, if the link is primary',
47
-
`is_revoked`BOOLEANNOT NULL COMMENT 'True, if the link is revoked',
48
-
`expire_date`TIMESTAMPNULL COMMENT 'Point in time (Unix TIMESTAMP) when the link will expire or has been expired',
49
-
`member_limit` MEDIUMINT UNSIGNED NULL COMMENT 'Maximum number of users that can be members of the chat simultaneously after joining the chat via this invite link; 1-99999',
`id`BIGINT UNSIGNED COMMENT 'Unique identifier for this entry',
247
+
`id`BIGINT UNSIGNED AUTO_INCREMENT COMMENT 'Unique identifier for this entry',
263
248
`chat_id`BIGINTNOT NULL COMMENT 'Chat the user belongs to',
264
249
`user_id`BIGINTNOT NULL COMMENT 'Performer of the action, which resulted in the change',
265
250
`date`TIMESTAMPNOT NULL COMMENT 'Date the change was done in Unix time',
266
251
`old_chat_member`TEXTNOT NULL COMMENT 'Previous information about the chat member',
267
252
`new_chat_member`TEXTNOT NULL COMMENT 'New information about the chat member',
268
-
`chat_invite_link_id`BIGINT UNSIGNED NULL COMMENT 'Chat invite link, which was used by the user to join the chat; for joining by invite link events only',
253
+
`invite_link`TEXTNULL COMMENT 'Chat invite link, which was used by the user to join the chat; for joining by invite link events only',
254
+
`created_at`timestampNULL DEFAULT NULL COMMENT 'Entry date creation',
@@ -287,8 +272,8 @@ CREATE TABLE IF NOT EXISTS `telegram_update` (
287
272
`pre_checkout_query_id`bigint UNSIGNED DEFAULT NULL COMMENT 'New incoming pre-checkout query. Contains full information about checkout',
288
273
`poll_id`bigint UNSIGNED DEFAULT NULL COMMENT 'New poll state. Bots receive only updates about polls, which are sent or stopped by the bot',
289
274
`poll_answer_poll_id`bigint UNSIGNED DEFAULT NULL COMMENT 'A user changed their answer in a non-anonymous poll. Bots receive new votes only in polls that were sent by the bot itself.',
290
-
`my_chat_member_update_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.',
291
-
`chat_member_update_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.',
275
+
`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.',
276
+
`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.',
292
277
293
278
PRIMARY KEY (`id`),
294
279
KEY `message_id` (`message_id`),
@@ -303,8 +288,8 @@ CREATE TABLE IF NOT EXISTS `telegram_update` (
0 commit comments