mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 15:01:26 +00:00
52250d0d49
* Removed slots configuration * feature: dynamic slots * fixes + improvements * edited core functionality * added commands for slots management * added commands english locale Co-authored-by: d3rp-jsx <15928886+derp-jsx@users.noreply.github.com>
8 lines
199 B
SQL
8 lines
199 B
SQL
CREATE TABLE `multicharacter_slots` (
|
|
`identifier` VARCHAR(60) NOT NULL DEFAULT '' COLLATE 'utf8mb4_unicode_ci',
|
|
`slots` INT(11) NOT NULL DEFAULT '1'
|
|
)
|
|
COLLATE='utf8mb4_unicode_ci'
|
|
ENGINE=InnoDB
|
|
;
|