Skip to content
Snippets Groups Projects
Commit 4bf6bcd7 authored by David Büchler's avatar David Büchler
Browse files

Liquibase Scripte in korrekten Ordner verschoben und integriert

Neues Liquibase für Tabelle DuplicateClusters
parent 2828dcbd
No related branches found
No related tags found
No related merge requests found
<?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.buechler" id="53fef445-1c3f-44a7-a55e-33827aac23ea">
<createTable tableName="DUPLICATECLUSTERS">
<column name="ID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_DUPLICATECLUSTERS_ID"/>
</column>
<column name="CLUSTERID" type="CHAR(36)" >
<constraints nullable="false"/>
</column>
<column name="DUPLICATEID" type="CHAR(36)" >
<constraints nullable="false"/>
</column>
<column name="USER_NEW" type="NVARCHAR(50)">
<constraints nullable="false"/>
</column>
<column name="DATE_NEW" type="DATE">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="NVARCHAR(50)" />
<column name="DATE_EDIT" type="DATE" />
</createTable>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
......@@ -8,4 +8,8 @@
<include relativeToChangelogFile="true" file="insert_AttributeType_Theme_keyword.xml"/>
<include relativeToChangelogFile="true" file="alter_Campaign_currency.xml"/>
<include relativeToChangelogFile="true" file="Duplicates/create_duplicateClusters.xml"/>
<include relativeToChangelogFile="true" file="Duplicates/create_duplicateScanner.xml"/>
<include relativeToChangelogFile="true" file="Duplicates/create_duplicateScanConditionConfig.xml"/>
</databaseChangeLog>
This diff is collapsed.
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