This commit is contained in:
Philipp 2022-12-29 23:27:36 +01:00
parent 9936081c7e
commit 0d6a4c8951
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
2 changed files with 2 additions and 2 deletions

View file

@ -845,7 +845,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
CREATE TABLE IF NOT EXISTS `key-value` ( CREATE TABLE IF NOT EXISTS `key-value` (
`k` varbinary(50) NOT NULL COMMENT '', `k` varbinary(50) NOT NULL COMMENT '',
`v` mediumtext COMMENT '', `v` mediumtext COMMENT '',
`updated_at` int unsigned NOT NULL COMMENT 'timestamp of the last update', `updated_at` int unsigned COMMENT 'timestamp of the last update',
PRIMARY KEY(`k`) PRIMARY KEY(`k`)
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='A key value storage'; ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='A key value storage';

View file

@ -894,7 +894,7 @@ return [
"fields" => [ "fields" => [
"k" => ["type" => "varbinary(50)", "not null" => "1", "primary" => "1", "comment" => ""], "k" => ["type" => "varbinary(50)", "not null" => "1", "primary" => "1", "comment" => ""],
"v" => ["type" => "mediumtext", "comment" => ""], "v" => ["type" => "mediumtext", "comment" => ""],
"updated_at" => ["type" => "int unsigned", "not null" => "0", "comment" => "timestamp of the last update"], "updated_at" => ["type" => "int unsigned", "comment" => "timestamp of the last update"],
], ],
"indexes" => [ "indexes" => [
"PRIMARY" => ["k"], "PRIMARY" => ["k"],