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