database.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <database>
  3. <name>*dbname*</name>
  4. <create>true</create>
  5. <overwrite>false</overwrite>
  6. <charset>utf8</charset>
  7. <table>
  8. <name>*dbprefix*flow_checks</name>
  9. <declaration>
  10. <field>
  11. <name>id</name>
  12. <type>integer</type>
  13. <default>0</default>
  14. <notnull>true</notnull>
  15. <autoincrement>1</autoincrement>
  16. <length>4</length>
  17. </field>
  18. <field>
  19. <name>class</name>
  20. <type>text</type>
  21. <notnull>true</notnull>
  22. <length>256</length>
  23. </field>
  24. <field>
  25. <name>operator</name>
  26. <type>text</type>
  27. <notnull>true</notnull>
  28. <length>16</length>
  29. </field>
  30. <field>
  31. <name>value</name>
  32. <type>clob</type>
  33. <notnull>false</notnull>
  34. </field>
  35. <field>
  36. <name>hash</name>
  37. <type>text</type>
  38. <notnull>true</notnull>
  39. <length>32</length>
  40. </field>
  41. <index>
  42. <name>flow_unique_hash</name>
  43. <unique>true</unique>
  44. <field>
  45. <name>hash</name>
  46. </field>
  47. </index>
  48. </declaration>
  49. </table>
  50. <table>
  51. <name>*dbprefix*flow_operations</name>
  52. <declaration>
  53. <field>
  54. <name>id</name>
  55. <type>integer</type>
  56. <default>0</default>
  57. <notnull>true</notnull>
  58. <autoincrement>1</autoincrement>
  59. <length>4</length>
  60. </field>
  61. <field>
  62. <name>class</name>
  63. <type>text</type>
  64. <notnull>true</notnull>
  65. <length>256</length>
  66. </field>
  67. <field>
  68. <name>name</name>
  69. <type>text</type>
  70. <notnull>true</notnull>
  71. <length>256</length>
  72. </field>
  73. <field>
  74. <name>checks</name>
  75. <type>clob</type>
  76. <notnull>false</notnull>
  77. </field>
  78. <field>
  79. <name>operation</name>
  80. <type>clob</type>
  81. <notnull>false</notnull>
  82. </field>
  83. </declaration>
  84. </table>
  85. </database>