Skip to content
Snippets Groups Projects
Commit 8e364ea3 authored by Lukas Werner's avatar Lukas Werner Committed by Tim Kerscher
Browse files

Sales 2028229 init sales module

parent c2582460
No related branches found
No related tags found
2 merge requests!39Beta,!33Sales 2028229 init sales module
Showing
with 0 additions and 798 deletions
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="be1a128a-385e-4067-9e0c-f14fa607e627">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="inboxfiltergroup_relation"/>
</not>
</preConditions>
<createTable tableName="inboxfiltergroup_relation">
<column name="INBOXFILTERGROUP_RELATIONID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="INBOXFILTERGROUP_ID" type="CHAR(36)"/>
<column name="INBOX_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="615559cd-f4e9-4cfb-85f6-7e62c8c0234e">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INBXFILTGRRL_INBOX_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INBXFILTGRRL_INBOX_ID" tableName="inboxfiltergroup_relation">
<column name="INBOX_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="fc4af721-9ca3-4af4-8760-dc6a4216da25">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INBXFILTGRRL_INBXFILTGR_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INBXFILTGRRL_INBXFILTGR_ID" tableName="inboxfiltergroup_relation">
<column name="INBOXFILTERGROUP_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="418fe862-396e-48b9-ae89-53c183c2611f">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="inboxmediumhandler"/>
</not>
</preConditions>
<createTable tableName="inboxmediumhandler">
<column name="INBOXMEDIUMHANDLERID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="NAME" type="VARCHAR(50)"/>
<column name="SENDERMAILADDRESS" type="VARCHAR(254)"/>
<column name="INBOX_ID" type="CHAR(36)"/>
<column name="MEDIUM" type="VARCHAR(36)"/>
<column name="TICKETTEMPLATE_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="NUMBERMATCHING" type="TINYINT"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="b84cbcf2-a383-465d-b029-7f9394ec6dc7">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INBOXMED_INBOX_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INBOXMED_INBOX_ID" tableName="inboxmediumhandler">
<column name="INBOX_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="f2472b2d-bf83-4126-8e70-f8dd4ba5c0ad">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INBOXMED_TEMPL_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INBOXMED_TEMPL_ID" tableName="inboxmediumhandler">
<column name="TICKETTEMPLATE_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="db0b64de-9db5-49ad-8479-d764013aeb49">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="interest"/>
</not>
</preConditions>
<createTable tableName="interest">
<column name="INTERESTID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="TITLE" type="VARCHAR(50)"/>
<column name="DESCRIPTION" type="VARCHAR(500)"/>
<column name="STATUS" type="VARCHAR(36)"/>
<column defaultValueComputed="NULL" name="IS_DEFAULT" type="TINYINT"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="COMMSETTINGSTYPE" type="VARCHAR(36)"/>
<column defaultValueComputed="NULL" name="ISREQUIREDFORMAILING" type="TINYINT"/>
<column defaultValueComputed="NULL" name="ISAVAILABLEFORWEBSERVICE" type="TINYINT"/>
<column defaultValueComputed="NULL" name="SORTING" type="INT"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="6fd00bd2-d453-46b3-b201-154a6d712a42">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="interestlink"/>
</not>
</preConditions>
<createTable tableName="interestlink">
<column name="INTERESTLINKID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="INTEREST_ID" type="CHAR(36)"/>
<column name="CONTACT_ID" type="CHAR(36)"/>
<column name="STATUS" type="VARCHAR(36)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="d7e36a8b-123e-49e3-8ea6-c733dc9d5b5e">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INTERESTLINK_CONTACT_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INTERESTLINK_CONTACT_ID" tableName="interestlink">
<column name="CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="4474564b-0046-43c1-8122-3bc5f7d4a24f">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_INTERESTLINK_INTEREST_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_INTERESTLINK_INTEREST_ID" tableName="interestlink">
<column name="INTEREST_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="649b2b2f-5c8f-47ea-98a0-739e9b9d465d">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgediscussion"/>
</not>
</preConditions>
<createTable tableName="knowledgediscussion">
<column name="KNOWLEDGEDISCUSSIONID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column name="STATUS" type="VARCHAR(36)"/>
<column name="AUTHOR" type="VARCHAR(50)"/>
<column name="DISCUSSIONTEXT" type="LONGTEXT"/>
<column name="PARENTENTRY" type="CHAR(36)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="934f9730-4fc5-48be-8ec1-d81fd59cf3d6">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGEDISCUSSION_KM_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGEDISCUSSION_KM_ID" tableName="knowledgediscussion">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="06e8dc7c-5111-4798-8ac3-a5c1649ad767">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgegitinterface"/>
</not>
</preConditions>
<createTable tableName="knowledgegitinterface">
<column name="KNOWLEDGEGITINTERFACEID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="GITCOMMIT" type="VARCHAR(200)"/>
<column name="SYSTEMNAME" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="40fb043a-d2db-4b4f-bff1-789552b5ae3e">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgelink"/>
</not>
</preConditions>
<createTable tableName="knowledgelink">
<column name="KNOWLEDGELINKID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column name="ROW_ID" type="CHAR(36)"/>
<column name="OBJECT_TYPE" type="VARCHAR(100)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="64364390-1e8a-496c-9679-52670586f651">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDELINK_ROW_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDELINK_ROW_ID" tableName="knowledgelink">
<column name="ROW_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="e2601f27-4542-4911-890b-c540874f050d">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGELINK_KM_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGELINK_KM_ID" tableName="knowledgelink">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="771dfa1f-5f91-4ab3-bf8f-0af9385f3f94">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgemanagement"/>
</not>
</preConditions>
<createTable tableName="knowledgemanagement">
<column name="KNOWLEDGEMANAGEMENTID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="AUTHOR_CONTACT_ID" type="CHAR(36)"/>
<column name="RESPONSIBLE_CONTACT_ID" type="CHAR(36)"/>
<column name="USER_NEW" type="VARCHAR(63)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column name="USER_EDIT" type="VARCHAR(63)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="TITLE" type="VARCHAR(255)"/>
<column name="CONTENT" type="LONGTEXT"/>
<column name="CONTENTDECODED" type="LONGTEXT"/>
<column name="PUBLISH" type="VARCHAR(36)"/>
<column name="TYPE" type="VARCHAR(36)"/>
<column defaultValueNumeric="0" name="USEINALLTICKETCATEGORIES" type="TINYINT">
<constraints nullable="false"/>
</column>
<column defaultValueNumeric="0" name="USEINALLINBOXES" type="TINYINT">
<constraints nullable="false"/>
</column>
<column defaultValueNumeric="0" name="NUMBEROFVIEWS" type="INT">
<constraints nullable="false"/>
</column>
<column name="KNOWLEDGEMANAGEMENTCATEGORY_ID" type="CHAR(36)"/>
<column name="SUMMARY" type="VARCHAR(255)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="2ba0f678-4666-4345-8ecc-a4066ae5d6ce">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOLEDGEMNGMTCATTEGORID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOLEDGEMNGMTCATTEGORID" tableName="knowledgemanagement">
<column name="KNOWLEDGEMANAGEMENTCATEGORY_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="e599bfc1-c2de-4730-917c-44e48d3d9efd">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDEMNGMT_AUTHCON_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDEMNGMT_AUTHCON_ID" tableName="knowledgemanagement">
<column name="AUTHOR_CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="11534cc6-cffa-4e30-ac28-b40cdbc7603e">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDEMNGMT_RESCON_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDEMNGMT_RESCON_ID" tableName="knowledgemanagement">
<column name="RESPONSIBLE_CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="a7542919-fb68-4c17-b344-23f80d7085c7">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGEMANAGEMENT_TITLE"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGEMANAGEMENT_TITLE" tableName="knowledgemanagement">
<column name="TITLE"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="b20a27ea-1e24-4fca-934d-1a5547a72705">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGEMANAGEMENT_TYPE"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGEMANAGEMENT_TYPE" tableName="knowledgemanagement">
<column name="TYPE"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="87bb41dd-4d92-48d5-84ff-60900645a897">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgemanagementcategory"/>
</not>
</preConditions>
<createTable tableName="knowledgemanagementcategory">
<column name="KNOWLEDGEMANAGEMENTCATEGORYID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="NAME" type="VARCHAR(50)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="DATE_NEW" type="datetime">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="ICON" type="LONGTEXT"/>
<column defaultValueComputed="NULL" name="ORDERNO" type="SMALLINT"/>
<column name="SUMMARY" type="VARCHAR(255)"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="9a970f2b-ccf0-4f56-91e9-44cb41cf57a6">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgemanagementinbox"/>
</not>
</preConditions>
<createTable tableName="knowledgemanagementinbox">
<column name="KNOWLEDGEMANAGEMENTINBOXID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column name="INBOX_ID" type="CHAR(36)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="DATE_NEW" type="datetime">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="e99086d6-45fb-456c-bb8b-dda69aec1044">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNKLDGMNGMTINBXKNWLDGMG_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNKLDGMNGMTINBXKNWLDGMG_ID" tableName="knowledgemanagementinbox">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="b3eea913-e6ed-4741-b75e-dc18c0ab781c">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGEMNGMTINBXINBOX_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGEMNGMTINBXINBOX_ID" tableName="knowledgemanagementinbox">
<column name="INBOX_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="2256104a-8956-443c-9a9b-adf0f1d1b8b3">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgemanagementtagmoderation"/>
</not>
</preConditions>
<createTable tableName="knowledgemanagementtagmoderation">
<column name="KNOWLEDGEMANAGEMENTTAGMODERATIONID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="AB_ATTRIBUTE_ID" type="CHAR(36)"/>
<column name="STATUS" type="CHAR(36)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="40cee6c0-a0ea-4dad-a4e4-47a16cbdf036">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDEMNGMTMOD_ATTR_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDEMNGMTMOD_ATTR_ID" tableName="knowledgemanagementtagmoderation">
<column name="AB_ATTRIBUTE_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="d497757f-7f7a-4d82-902d-ac86f146ba43">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgemanagementticketcategory"/>
</not>
</preConditions>
<createTable tableName="knowledgemanagementticketcategory">
<column name="KNOWLEDGEMANAGEMENTTICKETCATEGORYID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column name="CLASSIFICATION" type="VARCHAR(36)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="DATE_NEW" type="datetime">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="34c7b021-8912-48ba-8b55-d5c1d9e15bc3">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWMANAGTICCAT_CAT_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWMANAGTICCAT_CAT_ID" tableName="knowledgemanagementticketcategory">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="e2ba6246-2fdc-4783-919a-a861ebe0b476">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgeroles"/>
</not>
</preConditions>
<createTable tableName="knowledgeroles">
<column name="KNOWLEDGEROLESID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column name="ROLENAME" type="VARCHAR(100)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="3aa4975b-bec4-48a4-8cba-db4d572bac2c">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGEROLES_KM_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGEROLES_KM_ID" tableName="knowledgeroles">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="73ee07f5-ca8f-4f13-97ca-94fa8ea2fd9e">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgetag"/>
</not>
</preConditions>
<createTable tableName="knowledgetag">
<column name="KNOWLEDGETAGID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="TAG" type="VARCHAR(50)"/>
<column name="STATUS" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="fad68215-bfce-4e63-a2a0-60649f8bd277">
<preConditions onFail="MARK_RAN">
<and>
<tableExists tableName="knowledgetag"/>
<sqlCheck expectedResult="0">
SELECT COUNT(1) FROM knowledgetag
</sqlCheck>
<columnExists tableName="knowledgetag" columnName="KNOWLEDGETAGID"/>
<columnExists tableName="knowledgetag" columnName="TAG"/>
<columnExists tableName="knowledgetag" columnName="STATUS"/>
<columnExists tableName="knowledgetag" columnName="DATE_NEW"/>
<columnExists tableName="knowledgetag" columnName="DATE_EDIT"/>
<columnExists tableName="knowledgetag" columnName="USER_NEW"/>
<columnExists tableName="knowledgetag" columnName="USER_EDIT"/>
</and>
</preConditions>
<loadData commentLineStartsWith="#" encoding="UTF-8" file="csv/knowledgetag.csv" relativeToChangelogFile="true" quotchar="&quot;" separator="," tableName="knowledgetag">
<column header="KNOWLEDGETAGID" name="KNOWLEDGETAGID" type="STRING"/>
<column header="TAG" name="TAG" type="STRING"/>
<column header="STATUS" name="STATUS" type="skip"/>
<column header="DATE_NEW" name="DATE_NEW" type="skip"/>
<column header="DATE_EDIT" name="DATE_EDIT" type="skip"/>
<column header="USER_NEW" name="USER_NEW" type="skip"/>
<column header="USER_EDIT" name="USER_EDIT" type="skip"/>
</loadData>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="3620d22f-e2d6-4c36-bda8-86a0789ff913">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="knowledgetaglink"/>
</not>
</preConditions>
<createTable tableName="knowledgetaglink">
<column name="KNOWLEDGETAGLINKID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="KNOWLEDGETAG_ID" type="CHAR(36)"/>
<column name="KNOWLEDGEMANAGEMENT_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="cba63732-a935-4dfc-a2d3-5c0a320fd2ea">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGETAGLINK_KM_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGETAGLINK_KM_ID" tableName="knowledgetaglink">
<column name="KNOWLEDGEMANAGEMENT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="ab3d94d2-72b2-4046-ab15-1a2c44433709">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_KNOWLEDGETAGLINK_TAG_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_KNOWLEDGETAGLINK_TAG_ID" tableName="knowledgetaglink">
<column name="KNOWLEDGETAG_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="ffee930d-dec5-4bf9-87a1-48665170223b">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="leadbusinessfair"/>
</not>
</preConditions>
<createTable tableName="leadbusinessfair">
<column name="LEADBUSINESSFAIRID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="NAME" type="VARCHAR(50)"/>
<column name="CONTACT_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATEBEGIN" type="datetime"/>
<column defaultValueComputed="NULL" name="DATEEND" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="0e67e79e-702f-4eac-ace4-3e37432b944d">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEADBUSINESSFAIR_CONTACT_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEADBUSINESSFAIR_CONTACT_ID" tableName="leadbusinessfair">
<column name="CONTACT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="cddb5586-0c5f-4f1c-91b8-e93e69641880">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="leadbusinessfairentry"/>
</not>
</preConditions>
<createTable tableName="leadbusinessfairentry">
<column name="LEADBUSINESSFAIRENTRYID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="ACTIVITY_ID" type="CHAR(36)"/>
<column name="LEADBUSINESSFAIR_ID" type="CHAR(36)"/>
<column name="ORGANISATION_CONTACT_ID" type="CHAR(36)"/>
<column name="CONTACT_ID" type="CHAR(36)"/>
<column name="SALESPROJECT_ID" type="CHAR(36)"/>
<column name="EDITOR_CONTACT_ID" type="CHAR(36)"/>
<column name="STATUS" type="VARCHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="cd4c6dd7-1e97-4b16-9312-8b888583d9d9">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_ACT_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_ACT_ID" tableName="leadbusinessfairentry">
<column name="ACTIVITY_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="d9322cf1-701f-400f-8375-31ba82fa77b8">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_CON_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_CON_ID" tableName="leadbusinessfairentry">
<column name="CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="381304e9-c194-4e03-8bcb-02e407c7d03a">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_ECO_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_ECO_ID" tableName="leadbusinessfairentry">
<column name="EDITOR_CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="79cac18a-6e83-479d-9a0f-03863fed8044">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_LBF_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_LBF_ID" tableName="leadbusinessfairentry">
<column name="LEADBUSINESSFAIR_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="9abad5bc-3fe8-45ac-bc2f-f16302320bd3">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_OCO_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_OCO_ID" tableName="leadbusinessfairentry">
<column name="ORGANISATION_CONTACT_ID"/>
</createIndex>
</changeSet>
<changeSet author="L.Werner (generated)" id="67f89c28-4e73-4c49-9a58-55a9c6f3dc31">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEABUSFAIRENT_SAL_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEABUSFAIRENT_SAL_ID" tableName="leadbusinessfairentry">
<column name="SALESPROJECT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="900a8259-a7c4-4558-87f8-709dbfcb7e10">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="leadimport"/>
</not>
</preConditions>
<createTable tableName="leadimport">
<column name="LEADIMPORTID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="IMPORTSOURCE" type="VARCHAR(500)"/>
<column name="NAME" type="VARCHAR(50)"/>
<column name="STATUS" type="VARCHAR(36)"/>
<column defaultValueComputed="NULL" name="IMPORT_DATE" type="datetime"/>
<column name="RECORD_SEPARATOR" type="VARCHAR(36)"/>
<column name="FIELD_SEPARATOR" type="VARCHAR(36)"/>
<column name="FIELD_DELIMITER" type="VARCHAR(36)"/>
<column name="HEADLINE" type="CHAR(1)"/>
<column name="IMPORTEMPLOYEE" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
</createTable>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="255fec33-5481-49b2-bc92-3c0ff04713bf">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="leadimportmappingassistant"/>
</not>
</preConditions>
<createTable tableName="leadimportmappingassistant">
<column name="LEADIMPORTMAPPINGASSISTANTID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="DATE_NEW" type="datetime">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
<column name="FIELDNAME" type="VARCHAR(100)"/>
<column name="INPUTVALUE" type="VARCHAR(300)"/>
<column name="OUTPUTVALUE" type="VARCHAR(300)"/>
<column name="LEADIMPORT_ID" type="CHAR(36)"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="659ff2f5-7a09-46df-ae44-5c1965ad32a1">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEADIMPORTMAPPING_LI_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEADIMPORTMAPPING_LI_ID" tableName="leadimportmappingassistant">
<column name="LEADIMPORT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd">
<changeSet author="L.Werner (generated)" id="79475359-61de-4d3c-b4c5-bc15a7e3fd0f">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="leadlog"/>
</not>
</preConditions>
<createTable tableName="leadlog">
<column name="LEADLOGID" type="CHAR(36)">
<constraints nullable="false" primaryKey="true"/>
</column>
<column defaultValueComputed="NULL" name="ROWSINSERTED" type="INT"/>
<column name="LEADIMPORT_ID" type="CHAR(36)"/>
<column defaultValueComputed="NULL" name="IMPORTERRORS" type="INT"/>
<column name="IMPORTCANCELED" type="CHAR(1)"/>
<column name="IMPORTSOURCE" type="VARCHAR(500)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column defaultValueComputed="NULL" name="DATE_NEW" type="datetime"/>
<column defaultValueComputed="NULL" name="DATE_EDIT" type="datetime"/>
</createTable>
</changeSet>
<changeSet author="L.Werner (generated)" id="468265c0-0be6-44e2-bd35-3d3bab358f47">
<preConditions onFail="MARK_RAN">
<not>
<indexExists indexName="IDX_LEADLOG_LEADIMPORT_ID"/>
</not>
</preConditions>
<createIndex indexName="IDX_LEADLOG_LEADIMPORT_ID" tableName="leadlog">
<column name="LEADIMPORT_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment