Liquibase POC

This commit is contained in:
P0nk
2025-06-26 15:35:26 +02:00
parent 431eced76a
commit b5eb5dc0b9
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd">
<changeSet id="1" author="Ponk">
<sqlFile path="db/test-liquibase.sql"/>
</changeSet>
</databaseChangeLog>

View File

@@ -0,0 +1,4 @@
CREATE TABLE test_liquibase
(
id INT NOT NULL
);