Skip to content

Commit 7410c36

Browse files
committed
Fix varchar in SQL migration script
1 parent c63bbbd commit 7410c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: utils/db-schema-update/0.82.0-unreleased.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `chat_boost_updated` (
4646
CREATE TABLE IF NOT EXISTS `chat_boost_removed` (
4747
`id` bigint UNSIGNED AUTO_INCREMENT COMMENT 'Unique identifier for this entry',
4848
`chat_id` bigint COMMENT 'Chat which was boosted',
49-
`boost_id` varchar NOT NULL COMMENT 'Unique identifier of the boost',
49+
`boost_id` varchar(200) NOT NULL COMMENT 'Unique identifier of the boost',
5050
`remove_date` timestamp NOT NULL COMMENT 'Point in time (Unix timestamp) when the boost was removed',
5151
`source` TEXT NOT NULL COMMENT 'Source of the removed boost',
5252
`created_at` timestamp NULL DEFAULT NULL COMMENT 'Entry date creation',

0 commit comments

Comments
 (0)