diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
index ec3bbf339d9920366069b620809eff4e28deb3e7..540e5ac07739f0524bb0296de3a9505762c3ee0e 100644
--- a/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
+++ b/.liquibase/_____SYSTEMALIAS/basic/init/init.xml
@@ -23,6 +23,8 @@
     <include relativeToChangelogFile="true" file="struct/create_asys_roles.xml"/>
     <include relativeToChangelogFile="true" file="struct/create_asys_roles_children.xml"/>
     <include relativeToChangelogFile="true" file="struct/create_asys_usertoken.xml"/>
+    <include relativeToChangelogFile="true" file="struct/create_asys_record.xml"/>
+    <include relativeToChangelogFile="true" file="struct/create_asys_recordgroup.xml"/>
     <include relativeToChangelogFile="true" file="data/insert_asys_aliasconfig.xml"/>
     <include relativeToChangelogFile="true" file="data/insert_asys_system.xml"/>
     <include relativeToChangelogFile="true" file="data/insert_asys_permissionset.xml"/>
diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_record.xml b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_record.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8d6a080ec20a9b0b48c879c36c3c009a78438c90
--- /dev/null
+++ b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_record.xml
@@ -0,0 +1,13 @@
+<?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="a.schindlbeck" id="55fc4812-a4b7-4a53-a369-8b644ec78cae">
+    <createTable tableName="ASYS_RECORD">
+        <column name="ID" type="CHAR(36)">
+            <constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_ID"/>
+        </column>
+        <column name="OBJECT_TYPE" type="VARCHAR(64)"/>
+        <column name="ROW_ID" type="CHAR(36)"/>
+        <column name="RECORDGROUP_ID" type="CHAR(36)"/>
+    </createTable>
+</changeSet>
+</databaseChangeLog>
diff --git a/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_recordgroup.xml b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_recordgroup.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e3c58c269fc30df11e75b24dfd178144f224c22a
--- /dev/null
+++ b/.liquibase/_____SYSTEMALIAS/basic/init/struct/create_asys_recordgroup.xml
@@ -0,0 +1,13 @@
+<?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="a.schindlbeck" id="56a34dfc-3c0d-48e1-8890-31c0c93f1942">
+    <createTable tableName="ASYS_RECORDGROUP">
+        <column name="ID" type="CHAR(36)">
+            <constraints primaryKey="true" primaryKeyName="PK_ASYS_RECORD_GROUP_ID"/>
+        </column>
+        <column name="USER_CONTACT_ID" type="CHAR(36)"/>
+        <column name="TITLE" type="VARCHAR(256)"/>
+        <column name="GROUP_TYPE" type="VARCHAR(64)"/>
+    </createTable>
+</changeSet>
+</databaseChangeLog>