X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=doc%2Fdatabase%2Fdb_pconfig.md;h=cf9b0d7810f9a3520be13d4c4d5263870e7ebf7c;hb=8a7d08ae2860d82fe98a26f4e86626b3c7eb4d1e;hp=7449c511d36189d58b11303dc2ad0f4143938bef;hpb=2cd0c1d30d237806e9c3853aa0645f786e31855c;p=friendica.git diff --git a/doc/database/db_pconfig.md b/doc/database/db_pconfig.md index 7449c511d3..cf9b0d7810 100644 --- a/doc/database/db_pconfig.md +++ b/doc/database/db_pconfig.md @@ -3,6 +3,9 @@ Table pconfig personal (per user) configuration storage +Fields +------ + | Field | Description | Type | Null | Key | Default | Extra | | ----- | ----------- | ------------------ | ---- | --- | ------- | -------------- | | id | Primary key | int unsigned | NO | PRI | NULL | auto_increment | @@ -11,4 +14,19 @@ personal (per user) configuration storage | k | Key | varchar(100) | NO | | | | | v | Value | mediumtext | YES | | NULL | | +Indexes +------------ + +| Name | Fields | +| --------- | ------------------- | +| PRIMARY | id | +| uid_cat_k | UNIQUE, uid, cat, k | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| uid | [user](help/database/db_user) | uid | + Return to [database documentation](help/database)