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

36 lines
2.7 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
<database name="default" defaultIdMethod="none">
<table name="AD_ALERT">
<column name="AD_ALERT_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="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="ALERTSUBJECT" primaryKey="false" required="true" type="VARCHAR" size="60" autoIncrement="false"/>
<column name="ALERTMESSAGE" primaryKey="false" required="true" type="VARCHAR" size="2000" autoIncrement="false"/>
<column name="ENFORCECLIENTSECURITY" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
<column name="ENFORCEROLESECURITY" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
<column name="AD_ALERTPROCESSOR_ID" primaryKey="false" required="false" type="ID" size="10" autoIncrement="false"/>
<column name="ISVALID" primaryKey="false" required="true" type="CHAR" size="1" default="Y" autoIncrement="false"/>
<foreign-key foreignTable="AD_ALERTPROCESSOR" name="CALERTPROCESSOR_ADALERT" onDelete="setnull">
<reference local="AD_ALERTPROCESSOR_ID" foreign="AD_ALERTPROCESSOR_ID"/>
</foreign-key>
<check>
<rule><![CDATA[IsActive in ('Y','N')]]></rule>
</check>
<check>
<rule><![CDATA[EnforceClientSecurity in ('Y','N')]]></rule>
</check>
<check>
<rule><![CDATA[EnforceRoleSecurity in ('Y','N')]]></rule>
</check>
</table>
</database>