Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions guides/databases/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,10 @@ Add a Maven dependency to Liquibase in `srv/pom.xml`:
</dependency>
```

::: 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
Expand Down
4 changes: 4 additions & 0 deletions guides/databases/schema-evolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Loading