Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db_structure.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 623264e32c0..ab33a488dc5 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -395,11 +395,15 @@
</table>
<table>
-
+ <!--
+ Maps (fileid, user) to an integer which is a permission bitfield.
+ - E.g. (4, admin) -> 27
+ -->
<name>*dbprefix*permissions</name>
<declaration>
+ <!-- Foreign Key *dbprefix*filecache::fileid -->
<field>
<name>fileid</name>
<type>integer</type>
@@ -408,6 +412,7 @@
<length>4</length>
</field>
+ <!-- Foreign Key *dbprefix*users::uid -->
<field>
<name>user</name>
<type>text</type>