diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
index 4db7e29da171dccce7a034a87f3e1bad9c9c6ff3..1a0062079adb87a3955846e6e510029174f55623 100644
--- a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
+++ b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
@@ -16,7 +16,8 @@
     <include relativeToChangelogFile="true" file="struct/create_asys_notificationcontents.xml"/>
     <include relativeToChangelogFile="true" file="struct/create_asys_permission.xml"/>
     <include relativeToChangelogFile="true" file="struct/create_asys_permissionset.xml"/>
-    <include relativeToChangelogFile="true" file="struct/create_asys_permissionaction.xml"/>    
+    <include relativeToChangelogFile="true" file="struct/create_asys_permissionaction.xml"/>   
+    <include relativeToChangelogFile="true" file="struct/create_asys_monitor_dashletconfig.xml"/>    
     <include relativeToChangelogFile="true" file="data/insert_asys_aliasconfig.xml"/>
     <include relativeToChangelogFile="true" file="data/insert_asys_system.xml"/>
 </databaseChangeLog>
diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_monitor_dashletconfig.xml b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_monitor_dashletconfig.xml
new file mode 100644
index 0000000000000000000000000000000000000000..d8b1225f3baed212d39ebd1959998fa5e986c822
--- /dev/null
+++ b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_monitor_dashletconfig.xml
@@ -0,0 +1,16 @@
+<?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="b510b5e9-e599-4503-8bcd-4ef2465f56c6">
+    <createTable tableName="ASYS_MONITOR_DASHLETCONFIG">
+        <column name="ID" type="CHAR(63)">
+            <constraints primaryKey="true" primaryKeyName="PK_ASYS_MONITOR_DASHLETCONFIG_ID"/>
+        </column>
+        <column name="TITLE" type="VARCHAR(63)"/>
+        <column name="XPOSITION" type="INTEGER"/>
+        <column name="YPOSITION" type="INTEGER"/>
+        <column name="WIDTH" type="INTEGER"/>
+        <column name="HEIGHT" type="INTEGER"/>
+        <column name="VISUALISATIONCONFIG" type="CLOB"/>
+    </createTable>
+</changeSet>
+</databaseChangeLog>
\ No newline at end of file