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 112
112
* fixed #407 update Last Login Date is broken
113
113
114
114
## 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
116
116
117
117
## 3.0.x
118
118
* #377 add List of URL (Patterns) to Documentation
Original file line number Diff line number Diff line change @@ -155,8 +155,8 @@ spring:
155
155
jpa :
156
156
hibernate :
157
157
# ddl-auto: create-drop
158
- # ddl-auto: update
159
- ddl-auto : validate
158
+ ddl-auto : update
159
+ # ddl-auto: validate
160
160
server :
161
161
port : ${PORT}
162
162
compression :
Original file line number Diff line number Diff line change 711
711
validate =" true" />
712
712
</changeSet >
713
713
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
+
714
723
</databaseChangeLog >
Original file line number Diff line number Diff line change 6
6
xsi : schemaLocation =" http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.4.xsd
7
7
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd" >
8
8
9
+
9
10
</databaseChangeLog >
You can’t perform that action at this time.
0 commit comments