diff options
author | Robin Appelman <icewind@owncloud.com> | 2016-07-13 16:29:51 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2016-07-13 16:34:08 +0200 |
commit | 29eeeb2273782b72219c603e084a1d459514c361 (patch) | |
tree | 29ca6e4c3ab0b987ceebb0106df04b30feeee48b /db_structure.xml | |
parent | afef11f84aef91178d5bb566d6e726f969fd69d9 (diff) | |
download | nextcloud-server-29eeeb2273782b72219c603e084a1d459514c361.tar.gz nextcloud-server-29eeeb2273782b72219c603e084a1d459514c361.zip |
Save the files external mount id in the mount cache table
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index 6b91c3c4c5d..1127f0d82d4 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -170,6 +170,11 @@ <length>4000</length> </field> + <field> + <name>mount_id</name> + <type>integer</type> + </field> + <index> <name>mounts_user_index</name> <unique>false</unique> @@ -198,6 +203,15 @@ </index> <index> + <name>mounts_mount_id_index</name> + <unique>false</unique> + <field> + <name>mount_id</name> + <sorting>ascending</sorting> + </field> + </index> + + <index> <name>mounts_user_root_index</name> <unique>true</unique> <field> |