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