fix(sql): Add disabled user column back and change to TINYINT

- Accidentaly removed it; change this to TINYINT for consistency
This commit is contained in:
Linden
2021-10-16 08:31:45 +11:00
committed by GitHub
parent a1cb26da5d
commit 54245704c5
+3
View File
@@ -7,3 +7,6 @@ CREATE TABLE `multicharacter_slots` (
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;
ALTER TABLE `users`
`disabled` TINYINT(1) NULL DEFAULT '0',