From fe42fbb3dc9dd818e1aef41bfe4f3c6a151bbdf3 Mon Sep 17 00:00:00 2001 From: Maxim Leshchenko <50026114+maksalees@users.noreply.github.com> Date: Wed, 15 Dec 2021 00:58:08 +0200 Subject: [PATCH] Once again fix the SQL dump from the last commit before last I have anonymous posting turned off on my instance and I forgot to do it a little, so yes --- install/sqls/00014-group-discussions.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/install/sqls/00014-group-discussions.sql b/install/sqls/00014-group-discussions.sql index 9b9923d6..6fc61a93 100644 --- a/install/sqls/00014-group-discussions.sql +++ b/install/sqls/00014-group-discussions.sql @@ -10,6 +10,7 @@ CREATE TABLE IF NOT EXISTS `topics` ( `title` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL, `closed` boolean NOT NULL DEFAULT FALSE, `pinned` boolean NOT NULL DEFAULT FALSE, + `anonymous` boolean NOT NULL DEFAULT FALSE, `flags` tinyint(3) unsigned DEFAULT NULL, `deleted` tinyint(1) DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;