diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
index d5216569d1cc3f64a862b1636bd509a3710db2b1..8aa7a41d3b54fff390db711f0996ea18583dd724 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 0000000000000000000000000000000000000000..fce66d6999d9860c1d112ef57f23803969155177
--- /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