]> git.mxchange.org Git - friendica.git/blob - doc/database/db_permissionset.md
e492455242b866bf98f861df481c1b159dea52cf
[friendica.git] / doc / database / db_permissionset.md
1 Table permissionset
2 ===========
3
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | id        | sequential ID                                          | int unsigned       | NO  | PRI | NULL | auto_increment |    
8 | uid       | Owner id of this permission set                        | mediumint unsigned | NO  |     | 0    |                |    
9 | allow_cid | Access Control - list of allowed contact.id '<19><78>' | mediumtext         | YES |     | NULL |                |    
10 | allow_gid | Access Control - list of allowed groups                | mediumtext         | YES |     | NULL |                |    
11 | deny_cid  | Access Control - list of denied contact.id             | mediumtext         | YES |     | NULL |                |    
12 | deny_gid  | Access Control - list of denied groups                 | mediumtext         | YES |     | NULL |                |    
13
14 Return to [database documentation](help/database)