Skip to content

Commit f8a20a4

Browse files
committed
Fixed deploydb issue by using TEXT instead of varchar(65536) in backup_details.
1 parent eb4b132 commit f8a20a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/schema/src/main/resources/META-INF/db/schema-42010to42100.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ CREATE TABLE `cloud`.`backup_details` (
5050
`id` bigint unsigned NOT NULL auto_increment,
5151
`backup_id` bigint unsigned NOT NULL COMMENT 'backup id',
5252
`name` varchar(255) NOT NULL,
53-
`value` varchar(65536) NOT NULL,
53+
`value` TEXT NOT NULL,
5454
`display` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Should detail be displayed to the end user',
5555
PRIMARY KEY (`id`),
5656
CONSTRAINT `fk_backup_details__backup_id` FOREIGN KEY `fk_backup_details__backup_id`(`backup_id`) REFERENCES `backups`(`id`) ON DELETE CASCADE

0 commit comments

Comments
 (0)