Skip to content

Commit

Permalink
Fixup user_is_moderator default.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pentarctagon committed Sep 28, 2019
1 parent 0ea258e commit 440fce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/mp-server/table_definitions.sql
Expand Up @@ -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;

Expand Down

0 comments on commit 440fce9

Please sign in to comment.