浏览代码

Merge branch 'master' of github.com:gcpaas/DataRoom

wu.jian2 1 年之前
父节点
当前提交
b2cd8c03f2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      DataRoom/dataroom-server/src/main/resources/init-h2.sql

+ 2 - 2
DataRoom/dataroom-server/src/main/resources/init-h2.sql

@@ -179,11 +179,11 @@ CREATE TABLE IF NOT EXISTS big_screen_map (
     create_by BIGINT DEFAULT 2 COMMENT '创建人',
     update_by BIGINT DEFAULT 2 COMMENT '更新人',
     del_flag TINYINT NOT NULL DEFAULT '0' COMMENT '删除标识'
-)
+);
 
 CREATE TABLE IF NOT EXISTS big_screen_page_preview (
     id bigint(32) NOT NULL AUTO_INCREMENT PRIMARY KEY COMMENT '主键',
     code varchar(255) NOT NULL DEFAULT '' COMMENT '页面编码,页面唯一标识符',
     config clob COMMENT '页面配置',
     create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间'
-) COMMENT '页面预览缓存表,每日定时删除';
+);