FIX - extend Flare chat attachments

This commit is contained in:
Dominik
2026-08-09 05:23:28 +02:00
parent 5e3f642cb7
commit 095562bbb7
11 changed files with 583 additions and 47 deletions
+3
View File
@@ -295,6 +295,9 @@ CREATE TABLE IF NOT EXISTS `sky_phone_flare_messages` (
`match_id` CHAR(36) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`sender_account_id` BIGINT UNSIGNED NOT NULL,
`body` VARCHAR(1000) NOT NULL,
`message_type` ENUM('text', 'image', 'gif', 'video') NOT NULL DEFAULT 'text',
`media_url` VARCHAR(2048) NULL,
`media_duration_ms` INT UNSIGNED NULL,
`read_at` DATETIME NULL,
`created_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),