chg: [correlations] value field changed to varchar

pull/8530/head
iglocska 2022-08-04 13:49:30 +02:00
parent c030b06437
commit ea0932b7b1
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 1 additions and 1 deletions

View File

@ -1758,7 +1758,7 @@ class AppModel extends Model
) ENGINE=InnoDB;";
$sqlArray[] = "CREATE TABLE IF NOT EXISTS `correlation_values` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`value` text,
`value` varchar(191) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `value` (`value`(191))
) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;";