From cf6ee1c866ccca617cb2cae98966f04612084e7f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 26 Nov 2015 17:47:53 +0100 Subject: cache mountpoints in the db --- db_structure.xml | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) (limited to 'db_structure.xml') diff --git a/db_structure.xml b/db_structure.xml index e4bd8d998ee..058322f78a3 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -127,6 +127,93 @@ + + + + *dbprefix*mounts + + + + + id + integer + 0 + true + 1 + 4 + + + + storage_id + integer + true + + + + + root_id + integer + true + + + + user_id + text + true + 64 + + + + mount_point + text + true + 4000 + + + + mounts_user_index + false + + user_id + ascending + + + + + mounts_storage_index + false + + storage_id + ascending + + + + + mounts_root_index + false + + root_id + ascending + + + + + mounts_user_root_index + true + + user_id + ascending + + + root_id + ascending + + + + + +
+