Blame view
sources/apps/files_encryption/tests/encryption_table.xml
988 Bytes
|
03e52840d
|
1 2 |
<?xml version="1.0" encoding="ISO-8859-1" ?> <database> |
|
6d9380f96
|
3 4 5 6 7 8 |
<name>*dbname*</name> <create>true</create> <overwrite>false</overwrite> <charset>utf8</charset> <table> <name>*dbprefix*encryption_test</name> |
|
03e52840d
|
9 10 11 12 13 14 15 16 17 18 19 20 |
<declaration> <field> <name>uid</name> <type>text</type> <notnull>true</notnull> <length>64</length> </field> <field> <name>mode</name> <type>text</type> <notnull>true</notnull> <length>64</length> |
|
6d9380f96
|
21 |
<comments>What client-side / server-side configuration is used</comments> |
|
03e52840d
|
22 23 24 25 26 27 |
</field> <field> <name>recovery_enabled</name> <type>integer</type> <notnull>true</notnull> <default>0</default> |
|
6d9380f96
|
28 |
<comments>Whether encryption key recovery is enabled</comments> |
|
03e52840d
|
29 30 31 32 33 34 |
</field> <field> <name>migration_status</name> <type>integer</type> <notnull>true</notnull> <default>0</default> |
|
6d9380f96
|
35 |
<comments>Whether encryption migration has been performed</comments> |
|
03e52840d
|
36 37 38 |
</field> </declaration> </table> |
|
a293d369c
|
39 |
</database> |