From d5a425994f3b3bad210b921bcc8f2f7092e7f6f3 Mon Sep 17 00:00:00 2001 From: Jakub Onderka Date: Tue, 3 Aug 2021 14:04:18 +0200 Subject: [PATCH] fix: [schema] audit_logs.authkey_id columns should be nullable --- db_schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_schema.json b/db_schema.json index e2072fbe8..037ae288e 100644 --- a/db_schema.json +++ b/db_schema.json @@ -431,13 +431,13 @@ }, { "column_name": "authkey_id", - "is_nullable": "NO", + "is_nullable": "YES", "data_type": "int", "character_maximum_length": null, "numeric_precision": "10", "collation_name": null, "column_type": "int(11)", - "column_default": null, + "column_default": "NULL", "extra": "" }, {