From 0dd336acbbc6a7b19aa1011dca262b0f5f9f2ca8 Mon Sep 17 00:00:00 2001 From: averyzhang Date: Thu, 25 Apr 2024 15:39:59 +0800 Subject: [PATCH] [INLONG-10071][Manager] Supplementary statement trailing semicolon in apache_inlong_manager.sql --- inlong-manager/manager-web/sql/changes-1.12.0.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inlong-manager/manager-web/sql/changes-1.12.0.sql b/inlong-manager/manager-web/sql/changes-1.12.0.sql index 3c6c2bbe436..946cf925750 100644 --- a/inlong-manager/manager-web/sql/changes-1.12.0.sql +++ b/inlong-manager/manager-web/sql/changes-1.12.0.sql @@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS `module_config` `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Module config table'; -- ---------------------------- -- Table structure for package_config @@ -66,8 +66,8 @@ CREATE TABLE IF NOT EXISTS `package_config` ( `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modify time', PRIMARY KEY (`id`) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table' + DEFAULT CHARSET = utf8mb4 COMMENT = 'Package config table'; DROP INDEX `unique_audit_base_type` ON `audit_base`; ALTER TABLE `audit_base` CHANGE is_sent indicator_type int(4) DEFAULT NULL COMMENT 'Indicator type for audit'; -ALTER TABLE `audit_base` ADD UNIQUE KEY unique_audit_base_type (`indicator_type`,`type` ) \ No newline at end of file +ALTER TABLE `audit_base` ADD UNIQUE KEY unique_audit_base_type (`indicator_type`,`type`); \ No newline at end of file