From e0bda5bc70e5a10efc787360d3e8689d72d448b8 Mon Sep 17 00:00:00 2001 From: dartcafe Date: Tue, 14 Sep 2021 12:33:32 +0200 Subject: [PATCH] fix #1958 Signed-off-by: dartcafe --- lib/Migration/TableSchema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Migration/TableSchema.php b/lib/Migration/TableSchema.php index fa935d3e8..c95c323e0 100644 --- a/lib/Migration/TableSchema.php +++ b/lib/Migration/TableSchema.php @@ -207,7 +207,7 @@ abstract class TableSchema { 'allow_proposals' => ['type' => Types::STRING, 'options' => ['notnull' => true, 'default' => 'disallow', 'length' => 64]], 'use_no' => ['type' => Types::INTEGER, 'options' => ['notnull' => true, 'default' => 1]], 'proposals_expire' => ['type' => Types::INTEGER, 'options' => ['notnull' => true, 'default' => 0]], - 'misc_settings' => ['type' => Types::TEXT, 'options' => ['notnull' => true, 'default' => '', 'length' => 65535]], + 'misc_settings' => ['type' => Types::TEXT, 'options' => ['notnull' => false, 'default' => '', 'length' => 65535]], ], Option::TABLE => [ 'id' => ['type' => Types::INTEGER, 'options' => ['autoincrement' => true, 'notnull' => true]],