all of a sudden liquibase only works with xml ??
This commit is contained in:
parent
90299707ff
commit
254fbce0be
1 changed files with 19 additions and 0 deletions
19
src/main/resources/db/changeLog.xml
Normal file
19
src/main/resources/db/changeLog.xml
Normal 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>
|
||||||
Loading…
Add table
Reference in a new issue