From 0d6a4c8951f2cb5af72804c9584ca5b685beb1d8 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 29 Dec 2022 23:27:36 +0100 Subject: [PATCH] fix SQL --- database.sql | 2 +- static/dbstructure.config.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/database.sql b/database.sql index 2ae33689c..b7d4ac35d 100644 --- a/database.sql +++ b/database.sql @@ -845,7 +845,7 @@ CREATE TABLE IF NOT EXISTS `intro` ( CREATE TABLE IF NOT EXISTS `key-value` ( `k` varbinary(50) NOT NULL 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`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='A key value storage'; diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 3b3d6067c..7ced8172f 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -894,7 +894,7 @@ return [ "fields" => [ "k" => ["type" => "varbinary(50)", "not null" => "1", "primary" => "1", "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" => [ "PRIMARY" => ["k"],