From af0ca81d12c350021ba8d686d0ab0bc89b999980 Mon Sep 17 00:00:00 2001 From: "m.sieber" <m.sieber@adito.de> Date: Wed, 6 Nov 2019 13:24:17 +0100 Subject: [PATCH] Add table ASYS_MONITOR_DASHLETCONFIG --- .liquibase/_____SYSTEMALIAS/basic/init/init.xml | 3 ++- .../struct/create_asys_monitor_dashletconfig.xml | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_monitor_dashletconfig.xml diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml index 4db7e29da1..1a0062079a 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 0000000000..d8b1225f3b --- /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 -- GitLab