From 648d79fe0d4bf79c1f33654e0fdf759a7564ea71 Mon Sep 17 00:00:00 2001 From: qianming Date: Mon, 8 May 2023 09:24:45 +0800 Subject: [PATCH] update--1.0.0 release --- doc/docs/guide/releases/1.0.0.md | 18 +++++++++++++----- doc/update1.0/V0.9.9_U_V1.0.0.sql | 4 ---- report-core/src/main/resources/bootstrap.yml | 4 ++-- 3 files changed, 15 insertions(+), 11 deletions(-) delete mode 100644 doc/update1.0/V0.9.9_U_V1.0.0.sql diff --git a/doc/docs/guide/releases/1.0.0.md b/doc/docs/guide/releases/1.0.0.md index f614ed71..f985010c 100644 --- a/doc/docs/guide/releases/1.0.0.md +++ b/doc/docs/guide/releases/1.0.0.md @@ -6,15 +6,23 @@ - 如果需要将之前版本的示例数据删除,delete_aj_report_init.sql 文件放置在 doc/example目录下。 -- 对于从之前版本升级到1.0.0版本,为避免sql重复执行覆盖等问题,1.0.0版本的配置项bootstrap.yml将默认禁用flyway, - 从0.9.9版本更新到1.0.0版本的更新sql,V0.9.9_U_V1.0.0.sql 文件放置在 doc/update1.0目录下,请参照下面的步骤内容进行操作, +- 对于从之前版本升级到1.0.0版本,必需解决新旧sql的冲突问题,因为V1.0.0版本同样默认启用flyway,如果不解决冲突,代码启动就会报错, + 从0.9.9版本更新到1.0.0版本的更新sql,请参照下面的步骤内容进行操作, 如果从更低的版本升级到V1.0.0,请先升级到V0.9.9版本,可参考之前版本的[releases](https://gitee.com/anji-plus/report/releases)。 **如果从V0.9.9版本更新至V1.0.0版本后需要继续使用flyway功能,必需解决新旧sql的冲突问题** - 0.将自己系统的数据库数据进行备份 -- 1.手动执行V0.9.9_U_V1.0.0.sql(doc/update1.0 目录下) -- 2.插入一条数据到flyway_schema_history表中,sql如下 +- 1.手动执行V0.9.9更新的V1.0.0增量sql +``` +INSERT INTO `aj_report`.`gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('下拉框属性', 'SELECT_PROPERTIES', '下拉框属性', 'admin', NOW(), 'admin', NOW(), 1); + +INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('SELECT_PROPERTIES', '显示值', 'label', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1); +INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('SELECT_PROPERTIES', '提交值', 'value', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1); + +``` + +- 2.清空flyway_schema_history表并插入一条数据到表中,sql如下 ``` truncate table aj_report.flyway_schema_history; @@ -26,6 +34,6 @@ VALUES (1, '1.0.0', 'init', 'SQL', 'V1.0.0__init.sql', -1762151859, 'root', '202 - 3.将配置项bootstrap.yml中的flyway改为true -**如果是直接使用1.0.0版本,只需要将配置项bootstrap.yml中的flyway改为true即可** +**如果是直接使用1.0.0版本,以上都不需要处理** ## 新增/修复 diff --git a/doc/update1.0/V0.9.9_U_V1.0.0.sql b/doc/update1.0/V0.9.9_U_V1.0.0.sql deleted file mode 100644 index 541368ea..00000000 --- a/doc/update1.0/V0.9.9_U_V1.0.0.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT INTO `aj_report`.`gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('下拉框属性', 'SELECT_PROPERTIES', '下拉框属性', 'admin', NOW(), 'admin', NOW(), 1); - -INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('SELECT_PROPERTIES', '显示值', 'label', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1); -INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('SELECT_PROPERTIES', '提交值', 'value', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1); diff --git a/report-core/src/main/resources/bootstrap.yml b/report-core/src/main/resources/bootstrap.yml index 25f3deaf..cdbabaf5 100644 --- a/report-core/src/main/resources/bootstrap.yml +++ b/report-core/src/main/resources/bootstrap.yml @@ -45,8 +45,8 @@ spring: user: ${spring.datasource.username} password: ${spring.datasource.password} placeholder-replacement: false - #init-sqls: - #- CREATE DATABASE IF NOT EXISTS `aj_report` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; + init-sqls: + - CREATE DATABASE IF NOT EXISTS `aj_report` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; gaea: subscribes: oss: #文件存储 都配置的情况下优先级minio->amazonS3->nfs