Fixup user_is_moderator default.

This commit is contained in:
pentarctagon 2019-09-28 12:31:25 -05:00
parent 0ea258e6af
commit 440fce9bfe
No known key found for this signature in database
GPG key ID: 29E48D667D52CCF3

View file

@ -38,7 +38,7 @@ CREATE TABLE extra
(
username varchar(100) NOT NULL,
user_lastvisit int(10) unsigned NOT NULL DEFAULT '0',
user_is_moderator bit(1) NOT NULL DEFAULT '0',
user_is_moderator bit(1) NOT NULL DEFAULT 0,
PRIMARY KEY (username)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;