Config option to process the "view" activity

This commit is contained in:
Michael 2023-02-20 06:41:28 +00:00
parent 08754b2bab
commit 11513519ce
7 changed files with 47 additions and 10 deletions

25
doc/database/db_config.md Normal file
View file

@ -0,0 +1,25 @@
Table config
===========
main configuration storage
Fields
------
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ------------------------- | ------------- | ---- | --- | ------- | -------------- |
| id | | int unsigned | NO | PRI | NULL | auto_increment |
| cat | The category of the entry | varbinary(50) | NO | | | |
| k | The key of the entry | varbinary(50) | NO | | | |
| v | | mediumtext | YES | | NULL | |
Indexes
------------
| Name | Fields |
| ------- | -------------- |
| PRIMARY | id |
| cat_k | UNIQUE, cat, k |
Return to [database documentation](help/database)