diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-07-07 15:18:50 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-07-07 15:18:50 +0200 |
commit | acb196e17fb6d01a808e8758b5f852447cc03d99 (patch) | |
tree | 16d74834c917500a69eac46f75185229ee0182a0 /db_structure.xml | |
parent | c0679308561d7f2f170d100976d7c9f23db726c7 (diff) | |
download | nextcloud-server-acb196e17fb6d01a808e8758b5f852447cc03d99.tar.gz nextcloud-server-acb196e17fb6d01a808e8758b5f852447cc03d99.zip |
add group_admin table
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index 94567b4d539..f6dedab0a13 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -235,6 +235,32 @@ <table> + <name>*dbprefix*group_admin</name> + + <declaration> + + <field> + <name>gid</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>64</length> + </field> + + <field> + <name>uid</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>64</length> + </field> + + </declaration> + + </table> + + <table> + <name>*dbprefix*groups</name> <declaration> |