...
<property name="eclipselink.ddl-generation" value="create-or-extend-tables" />
See ddl-generation
Test Modules
Run mvn clean install -DUSE-MARIADB on
...
See MVN Testing Errors for details.
Docker Compose
A docker compose version of the liquibase can be used like so:
Code Block | ||||
---|---|---|---|---|
| ||||
version: '2'
services:
liquibase:
image: liquibase/liquibase
container_name: liquibase
command: ['--driver=$DRIVER', '--url=$URL', '--changeLogFile=$CHANGELOG', '--username=$USERNAME', '--password=$PASSWORD', '$CMD']
volumes:
- /mnt/c/Users/ktimoney/changelog:/liquibase/changelog |