all of a sudden liquibase only works with xml ??

This commit is contained in:
Sander Hautvast 2020-07-07 10:50:29 +02:00
parent 90299707ff
commit 254fbce0be

View file

@ -0,0 +1,19 @@
<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-3.8.xsd">
<changeSet id="1" author="sander">
<createTable tableName="beweging">
<column name="id" type="serial">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="vldatum" type="date">
<constraints nullable="false"/>
</column>
<column name="bewegingcode" type="varchar(20)">
<constraints nullable="false"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>