diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-11-12 01:00:04 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-11-12 01:00:04 +0100 |
commit | 024f4375b6fc476033dbd13f03e663076d44398b (patch) | |
tree | a2cca0ff6b0fe95d76cd4a06ced7b022e1929919 /db_structure.xml | |
parent | b2f2a8774586a49dee066a1fef674b26c04c5755 (diff) | |
download | nextcloud-server-024f4375b6fc476033dbd13f03e663076d44398b.tar.gz nextcloud-server-024f4375b6fc476033dbd13f03e663076d44398b.zip |
keep encrypted and versioned flag in fscache
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index c7fa423e14e..39dea564b0f 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -126,6 +126,22 @@ <length>32</length> </field> + <field> + <name>encrypted</name> + <type>integer</type> + <default>0</default> + <notnull>true</notnull> + <length>1</length> + </field> + + <field> + <name>versioned</name> + <type>integer</type> + <default>0</default> + <notnull>true</notnull> + <length>1</length> + </field> + <index> <name>path_index</name> <unique>true</unique> |