diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-08-01 21:51:18 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-08-03 11:55:10 +0200 |
| commit | acfab9d4ca84e9331bb40c74d300c593915c542a (patch) | |
| tree | f1f8f8c323a958658e04c21ec8bc363c9f8c4fb2 /opendc-web/opendc-web-server/src/main/resources/application-prod.properties | |
| parent | a01f964b531f12fd89cbdb0f2132aecbfaebf546 (diff) | |
feat(web/server): Implement database migrations using Flyway
This change updates the Quarkus-based web server to use Flyway for
migrating between schema versions. This enables us to evolve the schema
and denote it in SQL.
Diffstat (limited to 'opendc-web/opendc-web-server/src/main/resources/application-prod.properties')
| -rw-r--r-- | opendc-web/opendc-web-server/src/main/resources/application-prod.properties | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties index 09653d59..8e6a9720 100644 --- a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties +++ b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties @@ -20,11 +20,10 @@ # Datasource (H2) quarkus.datasource.db-kind=h2 -quarkus.datasource.jdbc.url=jdbc:h2:file:./data/opendc;DB_CLOSE_DELAY=-1;INIT=CREATE TYPE IF NOT EXISTS "JSONB" AS blob; +quarkus.datasource.jdbc.url=jdbc:h2:file:./data/opendc;DB_CLOSE_DELAY=-1;INIT=CREATE TYPE IF NOT EXISTS "JSONB" AS json; # Hibernate quarkus.hibernate-orm.dialect=org.hibernate.dialect.H2Dialect -quarkus.hibernate-orm.database.generation=validate # Disable authentication opendc.security.enabled=false |
