]> git.mxchange.org Git - friendica.git/blob - doc/database/db_pconfig.md
Updates database structure documentation
[friendica.git] / doc / database / db_pconfig.md
1 Table pconfig
2 ===========
3 personal (per user) configuration storage
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | id | Primary key | int unsigned | YES | PRI |  | auto_increment |    
8 | uid | User id | mediumint unsigned | YES |  | 0 |  |    
9 | cat | Category | varchar(50) | YES |  |  |  |    
10 | k | Key | varchar(100) | YES |  |  |  |    
11 | v | Value | mediumtext | NO |  |  |  |    
12
13 Return to [database documentation](help/database)