Skip to content
Snippets Groups Projects
Commit 7ed01ef7 authored by Maximilian Schröger's avatar Maximilian Schröger
Browse files

liquibase Stückliste

parent 357e1f96
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="m.schroeger" id="22a186c2-3eca-432e-b006-c179470b1732">
<createTable tableName="PROD2PROD">
<column name="PROD2PRODID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_PRODUCT_PRODUCTID"/>
</column>
<column name="OPTIONAL" type="CHAR(1)"/>
<column name="TAKEPRICE" type="CHAR(1)"/>
<column name="QUANTITY" type="NUMERIC(14,2)"/>
<column name="SOURCE_ID" type="CHAR(36)"/>
<column name="DEST_ID" type="CHAR(36)"/>
<column name="DATE_EDIT" type="TIMESTAMP"/>
<column name="DATE_NEW" type="TIMESTAMP">
<constraints nullable="false"/>
</column>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column name="USER_NEW" type="VARCHAR(50)">
<constraints nullable="false"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
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