feat(chars): enable or disable a specific character of a player (#43)

This commit is contained in:
Demetrio
2021-08-21 00:56:48 +10:00
committed by GitHub
parent e65a4cb181
commit 5f5b0138f0
6 changed files with 112 additions and 49 deletions
+3
View File
@@ -2,3 +2,6 @@ CREATE TABLE `multicharacter_slots` (
`identifier` VARCHAR(60) NOT NULL,
`slots` INT NOT NULL
);
ALTER TABLE `users`
ADD `disabled` BIT NOT NULL DEFAULT 0;