From 7410c365fadebb6336d9512d9909baadbe7847fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armando=20L=C3=BCscher?= Date: Fri, 24 May 2024 22:14:48 +0200 Subject: [PATCH] Fix varchar in SQL migration script --- utils/db-schema-update/0.82.0-unreleased.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/db-schema-update/0.82.0-unreleased.sql b/utils/db-schema-update/0.82.0-unreleased.sql index e58df278..ca6aafde 100644 --- a/utils/db-schema-update/0.82.0-unreleased.sql +++ b/utils/db-schema-update/0.82.0-unreleased.sql @@ -46,7 +46,7 @@ CREATE TABLE IF NOT EXISTS `chat_boost_updated` ( CREATE TABLE IF NOT EXISTS `chat_boost_removed` ( `id` bigint UNSIGNED AUTO_INCREMENT COMMENT 'Unique identifier for this entry', `chat_id` bigint COMMENT 'Chat which was boosted', - `boost_id` varchar NOT NULL COMMENT 'Unique identifier of the boost', + `boost_id` varchar(200) NOT NULL COMMENT 'Unique identifier of the boost', `remove_date` timestamp NOT NULL COMMENT 'Point in time (Unix timestamp) when the boost was removed', `source` TEXT NOT NULL COMMENT 'Source of the removed boost', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Entry date creation',