Files
esx_core-esx-framework/esx_multicharacter.sql
T
Linden 72450dfcd6 refactor: swap to oxmysql
ESX officially uses oxmysql with new syntax, so follow suite.
2022-02-12 05:58:45 +11:00

10 lines
269 B
SQL

CREATE TABLE `multicharacter_slots` (
`identifier` VARCHAR(60) NOT NULL,
`slots` INT(11) NOT NULL,
PRIMARY KEY (`identifier`) USING BTREE,
INDEX `slots` (`slots`) USING BTREE
) ENGINE=InnoDB;
ALTER TABLE `users` ADD COLUMN
`disabled` TINYINT(1) NULL DEFAULT '0';