Skip to content

Commit

Permalink
[INLONG-10071][Manager] Supplementary statement trailing semicolon in…
Browse files Browse the repository at this point in the history
… apache_inlong_manager.sql
  • Loading branch information
averyzhang committed Apr 25, 2024
1 parent 5a0ae62 commit d1dca9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inlong-manager/manager-web/sql/apache_inlong_manager.sql
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,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
Expand All @@ -996,7 +996,7 @@ 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';
-- ----------------------------

SET FOREIGN_KEY_CHECKS = 1;

0 comments on commit d1dca9f

Please sign in to comment.