friendica/doc/database/db_group_member.md

33 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2015-12-28 02:50:25 +01:00
Table group_member
===========
2021-06-14 08:10:11 +02:00
privacy circles, member info
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Fields
------
| Field | Description | Type | Null | Key | Default | Extra |
| ---------- | ---------------------------------------------------------- | ------------ | ---- | --- | ------- | -------------- |
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
| gid | group.id of the associated circle | int unsigned | NO | | 0 | |
| contact-id | contact.id of the member assigned to the associated circle | int unsigned | NO | | 0 | |
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Indexes
------------
2021-06-14 14:15:10 +02:00
| Name | Fields |
| ------------- | ----------------------- |
| PRIMARY | id |
| contactid | contact-id |
2021-06-14 10:53:37 +02:00
| gid_contactid | UNIQUE, gid, contact-id |
Foreign Keys
------------
| Field | Target Table | Target Field |
|-------|--------------|--------------|
| gid | [group](help/database/db_group) | id |
| contact-id | [contact](help/database/db_contact) | id |
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)