- MySQL index on BLOB/TEXT can only be partial (e.g.: `column`(length))
This commit is contained in:
Roland Häder 2022-06-19 10:48:47 +02:00
parent 5792a01a01
commit 5f6943b008
No known key found for this signature in database
GPG key ID: C82EDE5DDFA0BA77
3 changed files with 7 additions and 7 deletions

View file

@ -1234,7 +1234,7 @@ CREATE TABLE IF NOT EXISTS `post-media` (
`publisher-name` varchar(255) COMMENT 'Name of the publisher of the media',
`publisher-image` varbinary(255) COMMENT 'Image of the publisher of the media',
PRIMARY KEY(`id`),
UNIQUE INDEX `uri-id-url` (`uri-id`,`url`),
UNIQUE INDEX `uri-id-url` (`uri-id`,`url`(512)),
INDEX `uri-id-id` (`uri-id`,`id`),
FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Attached media';