Add key-value table

This commit is contained in:
Philipp 2022-12-29 16:54:08 +01:00
parent c264278c5d
commit 9a10bb4295
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
4 changed files with 50 additions and 2 deletions

View file

@ -0,0 +1,24 @@
Table key-value
===========
A key value storage
Fields
------
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ------------- | ---- | --- | ------- | -------------- |
| id | | int unsigned | NO | PRI | NULL | auto_increment |
| k | | varbinary(50) | NO | | | |
| v | | mediumtext | YES | | NULL | |
Indexes
------------
| Name | Fields |
| ------- | --------- |
| PRIMARY | id |
| k | UNIQUE, k |
Return to [database documentation](help/database)