Skip to content

Commit 6c3eeaf

Browse files
committed
Fixed varchar bug
1 parent f3800e9 commit 6c3eeaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

structure.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ CREATE TABLE IF NOT EXISTS `chat_boost_updated` (
344344
CREATE TABLE IF NOT EXISTS `chat_boost_removed` (
345345
`id` bigint UNSIGNED AUTO_INCREMENT COMMENT 'Unique identifier for this entry',
346346
`chat_id` bigint COMMENT 'Chat which was boosted',
347-
`boost_id` varchar NOT NULL COMMENT 'Unique identifier of the boost',
347+
`boost_id` varchar(200) NOT NULL COMMENT 'Unique identifier of the boost',
348348
`remove_date` timestamp NOT NULL COMMENT 'Point in time (Unix timestamp) when the boost was removed',
349349
`source` TEXT NOT NULL COMMENT 'Source of the removed boost',
350350
`created_at` timestamp NULL DEFAULT NULL COMMENT 'Entry date creation',

0 commit comments

Comments
 (0)