mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-17 04:15:15 +02:00
Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
|
@ -1,12 +1,13 @@
|
|||
Table group
|
||||
===========
|
||||
privacy groups, group info
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ------- | ------------------------------------------ | ---------------- | ---- | --- | ------- | --------------- |
|
||||
| id | sequential ID | int(10) unsigned | NO | PRI | NULL | auto_increment |
|
||||
| uid | user.id owning this data | int(10) unsigned | NO | MUL | 0 | |
|
||||
| visible | 1 indicates the member list is not private | tinyint(1) | NO | | 0 | |
|
||||
| deleted | 1 indicates the group has been deleted | tinyint(1) | NO | | 0 | |
|
||||
| name | human readable name of group | varchar(255) | NO | | | |
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| id | sequential ID | int unsigned | YES | PRI | | auto_increment |
|
||||
| uid | Owner User id | mediumint unsigned | YES | | 0 | |
|
||||
| visible | 1 indicates the member list is not private | boolean | YES | | 0 | |
|
||||
| deleted | 1 indicates the group has been deleted | boolean | YES | | 0 | |
|
||||
| name | human readable name of group | varchar(255) | YES | | | |
|
||||
|
||||
Return to [database documentation](help/database)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue