From adefc9b9d78be96da448a5f4f021bcab1c2b94aa Mon Sep 17 00:00:00 2001 From: qianming Date: Tue, 24 Oct 2023 10:01:57 +0800 Subject: [PATCH] =?UTF-8?q?doc=20=E6=96=87=E6=A1=A3=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/docs/guide/releases/1.0.0.md | 4 ++-- doc/docs/guide/releases/1.1.0.md | 8 ++++++++ .../{aj_report_init.sql => aj_report_init_example.sql} | 0 ..._report_init.sql => delete_aj_report_init_example.sql} | 0 4 files changed, 10 insertions(+), 2 deletions(-) rename doc/example/{aj_report_init.sql => aj_report_init_example.sql} (100%) rename doc/example/{delete_aj_report_init.sql => delete_aj_report_init_example.sql} (100%) diff --git a/doc/docs/guide/releases/1.0.0.md b/doc/docs/guide/releases/1.0.0.md index e1a2e4b7..5db12064 100644 --- a/doc/docs/guide/releases/1.0.0.md +++ b/doc/docs/guide/releases/1.0.0.md @@ -5,9 +5,9 @@ - 1.0版本调整了底层sql,具体位置是:report-core/src/main/resource/db.migration, 删除了过往所有的sql,现在此目录下sql仅包含aj_report基础信息库的相关sql,sql文件的命名也会和版本号保持一致, - 提供的示例数据(aj_report_init数据库的sql),aj_report_init.sql 文件放置在 doc/example目录下。 + 提供的示例数据(aj_report_init数据库的sql),aj_report_init_example.sql 文件放置在 doc/example目录下。 -- 如果需要将之前版本的示例数据删除,delete_aj_report_init.sql 文件放置在 doc/example目录下。 +- 如果需要将之前版本的示例数据删除,delete_aj_report_init_example.sql 文件放置在 doc/example目录下。 - 对于从之前版本升级到1.0.0版本,必须解决新旧sql的冲突问题,因为V1.0.0版本同样默认启用flyway,如果不解决冲突,代码启动flyway就会报错, 从0.9.9版本更新到1.0.0版本的更新sql,请参照下面的步骤内容进行操作, diff --git a/doc/docs/guide/releases/1.1.0.md b/doc/docs/guide/releases/1.1.0.md index 63c72522..fe7b7e6f 100644 --- a/doc/docs/guide/releases/1.1.0.md +++ b/doc/docs/guide/releases/1.1.0.md @@ -22,3 +22,11 @@ ## 其他 - 1、文档更新 + +## 示例数据 + +- 从1.0版本调整了底层sql,具体位置是:report-core/src/main/resource/db.migration, + 删除了过往所有的sql,现在此目录下sql仅包含aj_report基础信息库的相关sql,sql文件的命名也会和版本号保持一致, + 提供的示例数据(aj_report_init数据库的sql),aj_report_init_example.sql 文件放置在 doc/example目录下。 + +- 如果需要将之前版本的示例数据删除,delete_aj_report_init_example.sql 文件放置在 doc/example目录下。 diff --git a/doc/example/aj_report_init.sql b/doc/example/aj_report_init_example.sql similarity index 100% rename from doc/example/aj_report_init.sql rename to doc/example/aj_report_init_example.sql diff --git a/doc/example/delete_aj_report_init.sql b/doc/example/delete_aj_report_init_example.sql similarity index 100% rename from doc/example/delete_aj_report_init.sql rename to doc/example/delete_aj_report_init_example.sql