2006-12-29 05:15:15 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
|
|
|
|
<database name="default" defaultIdMethod="none">
|
|
|
|
<table name="AD_USERDEF_FIELD">
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="AD_USERDEF_FIELD_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"/>
|
2006-12-29 05:15:15 +07:00
|
|
|
<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"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="CREATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:15:15 +07:00
|
|
|
<column name="UPDATED" primaryKey="false" required="true" type="TIMESTAMP" size="7" default="CURRENT_TIMESTAMP" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="UPDATEDBY" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="AD_USERDEF_TAB_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
|
|
|
<column name="AD_FIELD_ID" primaryKey="false" required="true" type="ID" size="10" autoIncrement="false"/>
|
2006-12-29 05:15:15 +07:00
|
|
|
<column name="NAME" primaryKey="false" required="true" type="VARCHAR" size="60" autoIncrement="false"/>
|
|
|
|
<column name="DESCRIPTION" primaryKey="false" required="false" type="VARCHAR" size="255" autoIncrement="false"/>
|
|
|
|
<column name="HELP" primaryKey="false" required="false" type="VARCHAR" size="2000" autoIncrement="false"/>
|
|
|
|
<column name="ISDISPLAYED" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
|
|
|
<column name="ISREADONLY" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<column name="ISSAMELINE" primaryKey="false" required="true" type="CHAR" size="1" default="N" autoIncrement="false"/>
|
|
|
|
<column name="ISUPDATEABLE" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="DISPLAYLENGTH" primaryKey="false" required="true" type="DECIMAL" size="10" default="0" autoIncrement="false"/>
|
2006-12-29 05:15:15 +07:00
|
|
|
<column name="DISPLAYLOGIC" primaryKey="false" required="true" type="VARCHAR" size="2000" autoIncrement="false"/>
|
|
|
|
<column name="DEFAULTVALUE" primaryKey="false" required="true" type="VARCHAR" size="2000" autoIncrement="false"/>
|
2007-01-23 23:59:13 +07:00
|
|
|
<column name="SORTNO" primaryKey="false" required="true" type="DECIMAL" size="10" default="0" autoIncrement="false"/>
|
|
|
|
<column name="SEQNO" primaryKey="false" required="true" type="DECIMAL" size="10" default="0" autoIncrement="false"/>
|
2006-12-29 05:15:15 +07:00
|
|
|
<foreign-key foreignTable="AD_FIELD" name="ADFIELD_ADUSERDEFFIELD">
|
|
|
|
<reference local="AD_FIELD_ID" foreign="AD_FIELD_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<foreign-key foreignTable="AD_USERDEF_TAB" name="ADUSERDEFTAB_ADUSERDEFFIELD">
|
|
|
|
<reference local="AD_USERDEF_TAB_ID" foreign="AD_USERDEF_TAB_ID"/>
|
|
|
|
</foreign-key>
|
|
|
|
<check>
|
2007-02-01 23:50:31 +07:00
|
|
|
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
|
2006-12-29 05:15:15 +07:00
|
|
|
</check>
|
|
|
|
<check>
|
2007-02-01 23:50:31 +07:00
|
|
|
<rule><![CDATA[IsDisplayed in ('Y','N')]]></rule>
|
2006-12-29 05:15:15 +07:00
|
|
|
</check>
|
|
|
|
<check>
|
2007-02-01 23:50:31 +07:00
|
|
|
<rule><![CDATA[IsReadOnly in ('Y','N')]]></rule>
|
2006-12-29 05:15:15 +07:00
|
|
|
</check>
|
|
|
|
<check>
|
2007-02-01 23:50:31 +07:00
|
|
|
<rule><![CDATA[IsSameLine in ('Y','N')]]></rule>
|
2006-12-29 05:15:15 +07:00
|
|
|
</check>
|
|
|
|
<check>
|
2007-02-01 23:50:31 +07:00
|
|
|
<rule><![CDATA[IsUpdateable in ('Y','N')]]></rule>
|
2006-12-29 05:15:15 +07:00
|
|
|
</check>
|
|
|
|
</table>
|
|
|
|
</database>
|