forked from lukas-krecan/ShedLock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
liquibase-changelog.xml
23 lines (21 loc) · 942 Bytes
/
liquibase-changelog.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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.4.xsd">
<changeSet author="Lukas" id="1">
<createTable tableName="shedlock">
<column name="name" type="VARCHAR(64)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="lock_until" type="TIMESTAMP">
<constraints nullable="false"/>
</column>
<column name="locked_at" type="TIMESTAMP">
<constraints nullable="false"/>
</column>
<column name="locked_by" type="VARCHAR(255)">
<constraints nullable="false"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>