Skip to content

Commit 3f0ecf3

Browse files
committed
Fix create table SQL
1 parent 89b43c6 commit 3f0ecf3

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-41910to42000.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ CREATE TABLE IF NOT EXISTS `cloud`.`gui_themes` (
451451
CREATE TABLE IF NOT EXISTS `cloud`.`gui_themes_details` (
452452
`id` bigint(20) unsigned NOT NULL auto_increment,
453453
`gui_theme_id` bigint(20) unsigned NOT NULL COMMENT 'Foreign key referencing the GUI theme on `gui_themes` table.',
454-
`type` varchar(100) DEFAULT NOT NULL COMMENT 'The type of GUI theme details. Valid options are: `account`, `domain` and `commonName`',
454+
`type` varchar(100) NOT NULL COMMENT 'The type of GUI theme details. Valid options are: `account`, `domain` and `commonName`',
455455
`value` text NOT NULL COMMENT 'The value of the `type` details. Can be an UUID (account or domain) or internet common name.',
456456
PRIMARY KEY (`id`),
457457
CONSTRAINT `fk_gui_themes_details__gui_theme_id` FOREIGN KEY (`gui_theme_id`) REFERENCES `gui_themes`(`id`)

0 commit comments

Comments
 (0)