mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 02:38:53 +00:00
refactor: swap to oxmysql
ESX officially uses oxmysql with new syntax, so follow suite.
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
CREATE TABLE `multicharacter_slots` (
|
||||
`identifier` VARCHAR(60) NOT NULL COLLATE 'utf8mb4_unicode_ci',
|
||||
`identifier` VARCHAR(60) NOT NULL,
|
||||
`slots` INT(11) NOT NULL,
|
||||
PRIMARY KEY (`identifier`) USING BTREE,
|
||||
INDEX `slots` (`slots`) USING BTREE
|
||||
)
|
||||
COLLATE='utf8mb4_unicode_ci'
|
||||
ENGINE=InnoDB
|
||||
;
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
ALTER TABLE `users` ADD COLUMN
|
||||
`disabled` TINYINT(1) NULL DEFAULT '0'
|
||||
;
|
||||
`disabled` TINYINT(1) NULL DEFAULT '0';
|
||||
|
||||
Reference in New Issue
Block a user