File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
160160server :
161161 port : ${PORT}
162162 compression :
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments