Skip to content

Commit

Permalink
Fixed varchar bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TiiFuchs committed May 14, 2024
1 parent f3800e9 commit 6c3eeaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,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',
Expand Down

0 comments on commit 6c3eeaf

Please sign in to comment.