Skip to content

Commit 02e6eaa

Browse files
committed
* fixed #406 Liquibase Database Schema Evolution of changes by migrating spring-boot from 2 to 3 and Jakarta EE 10 JPA
1 parent 3d0603d commit 02e6eaa

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

etc/TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
* fixed #407 update Last Login Date is broken
113113

114114
## 3.0.0.rc.4
115-
* #406 Liquibase Database Schema Evolution of changes by migrating spring-boot from 2 to 3 and Jakarta EE 10 JPA
115+
* fixed #406 Liquibase Database Schema Evolution of changes by migrating spring-boot from 2 to 3 and Jakarta EE 10 JPA
116116

117117
## 3.0.x
118118
* #377 add List of URL (Patterns) to Documentation

src/main/resources/application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ spring:
155155
jpa:
156156
hibernate:
157157
#ddl-auto: create-drop
158-
#ddl-auto: update
159-
ddl-auto: validate
158+
ddl-auto: update
159+
#ddl-auto: validate
160160
server:
161161
port: ${PORT}
162162
compression:

src/main/resources/db/liquibase-changelog.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -711,4 +711,13 @@
711711
validate="true"/>
712712
</changeSet>
713713

714+
<changeSet author="thomaswoehlke" failOnError="false" dbms="postgresql" id="2">
715+
<modifyDataType columnName="double_optin_status"
716+
newDataType="int"
717+
tableName="user_account_password_recovery"/>
718+
<modifyDataType columnName="double_optin_status"
719+
newDataType="int"
720+
tableName="user_account_registration"/>
721+
</changeSet>
722+
714723
</databaseChangeLog>

src/main/resources/db/liquibase-diff-changelog.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.4.xsd
77
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
88

9+
910
</databaseChangeLog>

0 commit comments

Comments
 (0)