friendica/doc/database/db_config.md

26 lines
740 B
Markdown
Raw Normal View History

2015-12-28 02:50:25 +01:00
Table config
===========
2021-06-14 08:10:11 +02:00
main configuration storage
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Fields
------
2021-06-14 08:10:11 +02:00
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ------------- | ---- | --- | ------- | -------------- |
| id | | int unsigned | NO | PRI | NULL | auto_increment |
| cat | | varbinary(50) | NO | | | |
| k | | varbinary(50) | NO | | | |
| v | | mediumtext | YES | | NULL | |
2015-12-28 02:50:25 +01:00
2021-06-14 10:53:37 +02:00
Indexes
------------
2021-06-14 14:15:10 +02:00
| Name | Fields |
| ------- | -------------- |
| PRIMARY | id |
| cat_k | UNIQUE, cat, k |
2021-06-14 10:53:37 +02:00
2015-12-28 02:50:25 +01:00
Return to [database documentation](help/database)