Skip to content
Snippets Groups Projects
Commit b210dd85 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

Merge branch '#1039513' into 'master'

#1039513: Liquibase: Tabelle ASYS_TIMERS wird nicht erstellt

See merge request xrm/basic!44
parents 4f00acb6 a782e4bf
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
<include relativeToChangelogFile="true" file="struct/create_asys_sequences.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_system.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_timer.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_timers.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_users.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_calendarbackend.xml"/>
<include relativeToChangelogFile="true" file="struct/create_asys_calendarlink.xml"/>
......
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="m.sieber" id="">
<createTable tableName="ASYS_TIMERS">
<column name="TIMERID" type="VARCHAR(127)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_TIMERS_TIMERID"/>
</column>
<column name="LASTRUN" type="DATETIME"/>
<column name="STARTTIME" type="DATETIME"/>
<column name="INTERVALVALUE" type="INTEGER"/>
<column name="INTERVALUNIT" type="INTEGER"/>
<column name="PROCESSNAME" type="VARCHAR(255)"/>
<column name="INTERVALDESCRIPTION" type="VARCHAR(255)"/>
<column name="ACTIVE" type="VARCHAR(5)"/>
</createTable>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment