mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 04:45:16 +02:00
Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
|
@ -1,12 +1,13 @@
|
|||
Table pconfic
|
||||
=============
|
||||
Table pconfig
|
||||
===========
|
||||
personal (per user) configuration storage
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
|-------|-------------|------------|------|-----|---------|----------------|
|
||||
| id | | int(11) | NO | PRI | NULL | auto_increment |
|
||||
| uid | | int(11) | NO | MUL | 0 | |
|
||||
| cat | | char(255) | NO | | | |
|
||||
| k | | char(255) | NO | | | |
|
||||
| v | | mediumtext | NO | | NULL | |
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| id | Primary key | int unsigned | YES | PRI | | auto_increment |
|
||||
| uid | User id | mediumint unsigned | YES | | 0 | |
|
||||
| cat | Category | varchar(50) | YES | | | |
|
||||
| k | Key | varchar(100) | YES | | | |
|
||||
| v | Value | mediumtext | NO | | | |
|
||||
|
||||
Return to [database documentation](help/database)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue