123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <database>
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
- <charset>utf8</charset>
- <table>
- <name>*dbprefix*flow_checks</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
- <field>
- <name>class</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>256</length>
- </field>
- <field>
- <name>operator</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>16</length>
- </field>
- <field>
- <name>value</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>hash</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>32</length>
- </field>
- <index>
- <name>flow_unique_hash</name>
- <unique>true</unique>
- <field>
- <name>hash</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*flow_operations</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
- <field>
- <name>class</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>256</length>
- </field>
- <field>
- <name>name</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>256</length>
- </field>
- <field>
- <name>checks</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- <field>
- <name>operation</name>
- <type>clob</type>
- <notnull>false</notnull>
- </field>
- </declaration>
- </table>
- </database>
|