mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
54245704c5
- Accidentaly removed it; change this to TINYINT for consistency
13 lines
318 B
SQL
13 lines
318 B
SQL
CREATE TABLE `multicharacter_slots` (
|
|
`identifier` VARCHAR(60) NOT NULL COLLATE 'utf8mb4_unicode_ci',
|
|
`slots` INT(11) NOT NULL,
|
|
PRIMARY KEY (`identifier`) USING BTREE,
|
|
INDEX `slots` (`slots`) USING BTREE
|
|
)
|
|
COLLATE='utf8mb4_unicode_ci'
|
|
ENGINE=InnoDB
|
|
;
|
|
|
|
ALTER TABLE `users`
|
|
`disabled` TINYINT(1) NULL DEFAULT '0',
|