]> git.mxchange.org Git - friendica.git/blob - doc/database/db_group.md
Pad the lengths of the columns
[friendica.git] / doc / database / db_group.md
1 Table group
2 ===========
3 privacy groups, group info
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | id      | sequential ID                              | int unsigned       | NO | PRI | NULL | auto_increment |    
8 | uid     | Owner User id                              | mediumint unsigned | NO |     | 0    |                |    
9 | visible | 1 indicates the member list is not private | boolean            | NO |     | 0    |                |    
10 | deleted | 1 indicates the group has been deleted     | boolean            | NO |     | 0    |                |    
11 | name    | human readable name of group               | varchar(255)       | NO |     |      |                |    
12
13 Return to [database documentation](help/database)