refactor: swap to oxmysql

ESX officially uses oxmysql with new syntax, so follow suite.
This commit is contained in:
Linden
2022-02-12 05:58:45 +11:00
parent 02352a8e18
commit 72450dfcd6
7 changed files with 74 additions and 101 deletions
+3 -7
View File
@@ -1,13 +1,9 @@
CREATE TABLE `multicharacter_slots` (
`identifier` VARCHAR(60) NOT NULL COLLATE 'utf8mb4_unicode_ci',
`identifier` VARCHAR(60) NOT NULL,
`slots` INT(11) NOT NULL,
PRIMARY KEY (`identifier`) USING BTREE,
INDEX `slots` (`slots`) USING BTREE
)
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;
) ENGINE=InnoDB;
ALTER TABLE `users` ADD COLUMN
`disabled` TINYINT(1) NULL DEFAULT '0'
;
`disabled` TINYINT(1) NULL DEFAULT '0';