]> git.mxchange.org Git - friendica.git/blob - doc/database/db_pconfig.md
Reversed "null"
[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 | NO | PRI | NULL | auto_increment |    
8 | uid | User id | mediumint unsigned | NO |  | 0 |  |    
9 | cat | Category | varchar(50) | NO |  |  |  |    
10 | k | Key | varchar(100) | NO |  |  |  |    
11 | v | Value | mediumtext | YES |  | NULL |  |    
12
13 Return to [database documentation](help/database)