Skip to content

Commit 71b7c14

Browse files
committed
Fix create table SQL
1 parent 287e04b commit 71b7c14

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 IF NOT EXISTS `cloud`.`gui_themes` (
5050
CREATE TABLE IF NOT EXISTS `cloud`.`gui_themes_details` (
5151
`id` bigint(20) unsigned NOT NULL auto_increment,
5252
`gui_theme_id` bigint(20) unsigned NOT NULL COMMENT 'Foreign key referencing the GUI theme on `gui_themes` table.',
53-
`type` varchar(100) DEFAULT NOT NULL COMMENT 'The type of GUI theme details. Valid options are: `account`, `domain` and `commonName`',
53+
`type` varchar(100) NOT NULL COMMENT 'The type of GUI theme details. Valid options are: `account`, `domain` and `commonName`',
5454
`value` text NOT NULL COMMENT 'The value of the `type` details. Can be an UUID (account or domain) or internet common name.',
5555
PRIMARY KEY (`id`),
5656
CONSTRAINT `fk_gui_themes_details__gui_theme_id` FOREIGN KEY (`gui_theme_id`) REFERENCES `gui_themes`(`id`)

0 commit comments

Comments
 (0)