2015-12-28 02:50:25 +01:00
|
|
|
Table group
|
|
|
|
===========
|
2021-06-14 08:10:11 +02:00
|
|
|
|
2021-06-13 22:33:50 +02:00
|
|
|
privacy groups, group info
|
2015-12-28 02:50:25 +01:00
|
|
|
|
2021-06-14 10:53:37 +02:00
|
|
|
Fields
|
|
|
|
------
|
|
|
|
|
2022-02-09 20:44:10 +01:00
|
|
|
| Field | Description | Type | Null | Key | Default | Extra |
|
|
|
|
| ------- | ----------------------------------------------------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
|
|
|
|
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
|
|
|
| uid | Owner User id | mediumint unsigned | NO | | 0 | |
|
|
|
|
| visible | 1 indicates the member list is not private | boolean | NO | | 0 | |
|
|
|
|
| deleted | 1 indicates the group has been deleted | boolean | NO | | 0 | |
|
|
|
|
| cid | Contact id of forum. When this field is filled then the members are synced automatically. | int unsigned | YES | | NULL | |
|
|
|
|
| name | human readable name of group | varchar(255) | NO | | | |
|
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 |
|
|
|
|
| uid | uid |
|
2022-02-09 20:44:10 +01:00
|
|
|
| cid | cid |
|
2021-06-14 10:53:37 +02:00
|
|
|
|
|
|
|
Foreign Keys
|
|
|
|
------------
|
|
|
|
|
|
|
|
| Field | Target Table | Target Field |
|
|
|
|
|-------|--------------|--------------|
|
|
|
|
| uid | [user](help/database/db_user) | uid |
|
2022-02-09 20:44:10 +01:00
|
|
|
| cid | [contact](help/database/db_contact) | id |
|
2021-06-14 10:53:37 +02:00
|
|
|
|
2015-12-28 02:50:25 +01:00
|
|
|
Return to [database documentation](help/database)
|