Change from Liquibase to Flyway because it's supported by GraalVM

This commit is contained in:
2025-01-22 18:32:02 +01:00
parent 12ced4b11c
commit bcf8099217
4 changed files with 20 additions and 8 deletions

View File

@ -0,0 +1,4 @@
CREATE TABLE example_table (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);