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
This commit is contained in:
Maxim Leshchenko 2021-12-15 00:58:08 +02:00 committed by GitHub
parent a082d84d54
commit fe42fbb3dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;