mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
a1cb26da5d
- These fields should only be referenced, so index them for faster queries
10 lines
255 B
SQL
10 lines
255 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
|
|
;
|