This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
UIRP-5M/resources/[core]/ui_multicharacter/esx_multicharacter.sql
2025-02-02 10:40:42 +01: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';