diff --git a/guides/databases/postgres.md b/guides/databases/postgres.md index 93f1973b9..4754ce000 100644 --- a/guides/databases/postgres.md +++ b/guides/databases/postgres.md @@ -529,6 +529,10 @@ Add a Maven dependency to Liquibase in `srv/pom.xml`: ``` +::: tip Liquibase license change +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) with release 5.0. You need to check if this license is compatible with your application. +::: + Once `liquibase-core` is on the classpath, [Spring runs database migrations](https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto.data-initialization.migration-tool.liquibase) automatically on application startup and before your tests run. ### ① Initial Schema Version diff --git a/guides/databases/schema-evolution.md b/guides/databases/schema-evolution.md index 01b80d96b..2092079a5 100644 --- a/guides/databases/schema-evolution.md +++ b/guides/databases/schema-evolution.md @@ -194,4 +194,8 @@ Learn more about that in the [SAP HANA](hana.md) guide, section [HDI Schema Evol For Java-based CAP projects, you can also use [Liquibase](https://www.liquibase.org/) to control when, where, and how you deploy database changes. +::: tip Liquibase license change +Please be aware that Liquibase [changed it's license to Functional Source License (FSL)](https://www.liquibase.com/blog/liquibase-community-for-the-future-fsl) with release 5.0. You need to check if this license is compatible with your application. +::: + Learn more about that in the [PostgreSQL](postgres.md) guide, section [Using Liquibase (Java)](postgres#using-liquibase-java).