Re-Add Config table

This commit is contained in:
Philipp Holzer 2023-02-04 20:52:24 +01:00
commit 6db89adc04
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
4 changed files with 23 additions and 1 deletions

View file

@ -554,6 +554,17 @@ return [
"k_expires" => ["k", "expires"],
]
],
"config" => [
"comment" => "main configuration storage",
"fields" => [
"cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => "The category of the entry"],
"k" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => "The key of the entry"],
"v" => ["type" => "mediumtext", "comment" => ""],
],
"indexes" => [
"PRIMARY" => ["cat", "k"],
]
],
"contact-relation" => [
"comment" => "Contact relations",
"fields" => [