diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-26 20:55:08 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-26 20:55:08 +0100 |
commit | 790155e574632c7d628d0bd66cb13764e0cbcdd5 (patch) | |
tree | 1d0584f85ef999ee15ab46e983fbb823686bb053 /db_structure.xml | |
parent | 46e32b08c0f0e3b4f28ac9961959c4d37b5b17b5 (diff) | |
download | nextcloud-server-790155e574632c7d628d0bd66cb13764e0cbcdd5.tar.gz nextcloud-server-790155e574632c7d628d0bd66cb13764e0cbcdd5.zip |
db-doc: group_admin description
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/db_structure.xml b/db_structure.xml index 39233a706eb..f1474fe0680 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -492,11 +492,16 @@ </table> <table> - + <!-- + Stores which groups have which users as admins in an n:m relationship. + - Maps group id (gid) to a set of users (uid) + - Maps user id (uid) to a set of groups (gid) + --> <name>*dbprefix*group_admin</name> <declaration> + <!-- Foreign Key groups::gid --> <field> <name>gid</name> <type>text</type> @@ -505,6 +510,7 @@ <length>64</length> </field> + <!-- Foreign Key users::uid --> <field> <name>uid</name> <type>text</type> |