database.xml 987 B

123456789101112131415161718192021222324252627282930313233343536373839
  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*encryption</name>
  9. <declaration>
  10. <field>
  11. <name>uid</name>
  12. <type>text</type>
  13. <notnull>true</notnull>
  14. <length>64</length>
  15. </field>
  16. <field>
  17. <name>mode</name>
  18. <type>text</type>
  19. <notnull>true</notnull>
  20. <length>64</length>
  21. <comments>What client-side / server-side configuration is used</comments>
  22. </field>
  23. <field>
  24. <name>recovery_enabled</name>
  25. <type>integer</type>
  26. <notnull>true</notnull>
  27. <default>0</default>
  28. <comments>Whether encryption key recovery is enabled</comments>
  29. </field>
  30. <field>
  31. <name>migration_status</name>
  32. <type>integer</type>
  33. <notnull>true</notnull>
  34. <default>0</default>
  35. <comments>Whether encryption migration has been performed</comments>
  36. </field>
  37. </declaration>
  38. </table>
  39. </database>