From 97bb4e31092f8d6fd5f05af1667b6c6c947b3178 Mon Sep 17 00:00:00 2001
From: "d.lechner" <d.lechner@adito.de>
Date: Tue, 12 Jun 2018 11:01:02 +0200
Subject: [PATCH] [Projekt: xRM-Basic][TicketNr.: 1018578][Beginn mit Umsetzung
 der Entity "HISTORY"] Adding create-statement for HISTORY

---
 others/db_changes/masterChangelog.xml       |  2 +-
 others/db_changes/struct/create_history.xml | 23 +++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletion(-)
 create mode 100644 others/db_changes/struct/create_history.xml

diff --git a/others/db_changes/masterChangelog.xml b/others/db_changes/masterChangelog.xml
index 55444430fc..3339eb7f23 100644
--- a/others/db_changes/masterChangelog.xml
+++ b/others/db_changes/masterChangelog.xml
@@ -1,4 +1,4 @@
 <?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">
-    
+    <include file="struct/create_history.xml"/>
 </databaseChangeLog>
\ No newline at end of file
diff --git a/others/db_changes/struct/create_history.xml b/others/db_changes/struct/create_history.xml
new file mode 100644
index 0000000000..28a2c38af6
--- /dev/null
+++ b/others/db_changes/struct/create_history.xml
@@ -0,0 +1,23 @@
+<?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="d.lechner" id="1528461798137-1">
+        <createTable tableName="HISTORY">
+		    <column name="SUBJECT" type="VARCHAR(254)"/>
+            <column name="INFO" type="CLOB"/>
+			<column name="MEDIUM" type="INTEGER"/>
+            <column name="DIRECTION" type="CHAR(1)"/>
+			<column name="ENTRYDATE" type="TIMESTAMP"/>
+			<column name="HISTORYID" type="CHAR(36)">
+                <constraints primaryKey="true" primaryKeyName="PK_HISTORY_HISTORYID"/>
+            </column>
+			<column name="USER_NEW" type="VARCHAR(50)">
+				<constraints nullable="false"/>
+			</column>
+            <column name="USER_EDIT" type="VARCHAR(50)"/>
+			<column name="DATE_NEW" type="TIMESTAMP">
+				<constraints nullable="false"/>
+			</column>
+            <column name="DATE_EDIT" type="TIMESTAMP"/>
+        </createTable>
+    </changeSet>
+</databaseChangeLog>
\ No newline at end of file
-- 
GitLab