From 237820b2dbd400c16292a86bc569967b579ede6e Mon Sep 17 00:00:00 2001 From: Raod <1130305001@qq.com> Date: Fri, 5 May 2023 16:01:06 +0800 Subject: [PATCH] =?UTF-8?q?1.0=20sql=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/docs/guide/releases/1.0.0.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/docs/guide/releases/1.0.0.md b/doc/docs/guide/releases/1.0.0.md index 7784d6e3..f614ed71 100644 --- a/doc/docs/guide/releases/1.0.0.md +++ b/doc/docs/guide/releases/1.0.0.md @@ -17,8 +17,11 @@ - 2.插入一条数据到flyway_schema_history表中,sql如下 ``` - INSERT INTO `aj_report`.`flyway_schema_history`(`installed_rank`, `version`, `description`, `type`, `script`, `checksum`, `installed_by`, `installed_on`, `execution_time`, `success`) - VALUES (25, '1.0.0', 'init', 'SQL', 'V1.0.0__init.sql', 166872711, 'root', '2023-01-10 07:31:07', 70, 1); +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