Fixup user_is_moderator default.

This commit is contained in:
pentarctagon 2019-09-28 12:32:54 -05:00
parent 17d21ff76a
commit f1d48a0947
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;