From a782e4bfe37cd905f39803b4e5c74b096a342c81 Mon Sep 17 00:00:00 2001 From: "m.sieber" <m.sieber@adito.de> Date: Wed, 3 Jul 2019 15:19:51 +0200 Subject: [PATCH] #1039513: Liquibase: Tabelle ASYS_TIMERS wird nicht erstellt --- .liquibase/_____SYSTEMALIAS/basic/init/init.xml | 1 + .../basic/init/struct/create_asys_timers.xml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_timers.xml diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml index d5216569d1..8aa7a41d3b 100644 --- a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml +++ b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml @@ -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"/> diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_timers.xml b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_timers.xml new file mode 100644 index 0000000000..fce66d6999 --- /dev/null +++ b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_timers.xml @@ -0,0 +1,17 @@ +<?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 -- GitLab