Browse Source

db-doc: group_user description

tags/v6.0.0RC1
Andreas Fischer 10 years ago
parent
commit
46e32b08c0
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      db_structure.xml

+ 7
- 1
db_structure.xml View File

</table> </table>


<table> <table>

<!--
Stores which groups have which users as members 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) (but without index)
-->
<name>*dbprefix*group_user</name> <name>*dbprefix*group_user</name>


<declaration> <declaration>


<!-- Foreign Key groups::gid -->
<field> <field>
<name>gid</name> <name>gid</name>
<type>text</type> <type>text</type>
<length>64</length> <length>64</length>
</field> </field>


<!-- Foreign Key users::uid -->
<field> <field>
<name>uid</name> <name>uid</name>
<type>text</type> <type>text</type>

Loading…
Cancel
Save