core-jgi/db/ddlutils/model/M_DISTRIBUTIONRUNLINE.xml

34 lines
2.6 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
<database name="default" defaultIdMethod="none">
<table name="M_DISTRIBUTIONRUNLINE">
<column name="M_DISTRIBUTIONRUNLINE_ID" primaryKey="true" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="AD_CLIENT_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="AD_ORG_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="ISACTIVE" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
<column name="CREATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
<column name="CREATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="UPDATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
<column name="UPDATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="M_DISTRIBUTIONRUN_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="LINE" primaryKey="false" required="true" type="DECIMAL" size="10" autoIncrement="false"/>
<column name="DESCRIPTION" primaryKey="false" required="false" type="VARCHAR" size="255" autoIncrement="false"/>
<column name="M_DISTRIBUTIONLIST_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="M_PRODUCT_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
<column name="TOTALQTY" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
<column name="MINQTY" primaryKey="false" required="true" type="DECIMAL" default="0" autoIncrement="false"/>
<foreign-key foreignTable="M_DISTRIBUTIONLIST" name="MDISTRIBUTIONLIST_RUNLINE" onDelete="cascade">
<reference local="M_DISTRIBUTIONLIST_ID" foreign="M_DISTRIBUTIONLIST_ID"/>
</foreign-key>
<foreign-key foreignTable="M_DISTRIBUTIONRUN" name="MDISTRIBUTIONRUN_LINE" onDelete="cascade">
<reference local="M_DISTRIBUTIONRUN_ID" foreign="M_DISTRIBUTIONRUN_ID"/>
</foreign-key>
<foreign-key foreignTable="M_PRODUCT" name="MPRODUCT_MDISTRIBUTIONRUN" onDelete="none">
<reference local="M_PRODUCT_ID" foreign="M_PRODUCT_ID"/>
</foreign-key>
<check>
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
</check>
</table>
</database>