You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
## 注意事项
- 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目录下。
- 如果需要将之前版本的示例数据删除, 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目录下,请参照下面的步骤内容进行操作,
如果从更低的版本升级到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如下
```
truncate table aj_report.flyway_schema_history;
INSERT INTO aj_report.flyway_schema_history (installed_rank, version, description, type, script, checksum, installed_by, installed_on, execution_time, success)
VALUES (1, '1.0.0', 'init', 'SQL', 'V1.0.0__init.sql', -1762151859, 'root', '2023-05-05 15:39:07', 588, 1);
```
- 3.将配置项bootstrap.yml中的flyway改为true
** 如果是直接使用1.0.0版本, 只需要将配置项bootstrap.yml中的flyway改为true即可**
## 新增/修复