Files
esx_core/esx_addonaccount.sql
T
shortybsd 10ef24add7 Update esx_addonaccount.sql
INT - Integer display width is deprecated and will be removed in a future release.
2020-05-16 22:23:09 -05:00

21 lines
512 B
SQL

USE `es_extended`;
CREATE TABLE `addon_account` (
`name` VARCHAR(60) NOT NULL,
`label` VARCHAR(100) NOT NULL,
`shared` INT NOT NULL,
PRIMARY KEY (`name`)
);
CREATE TABLE `addon_account_data` (
`id` INT NOT NULL AUTO_INCREMENT,
`account_name` VARCHAR(100) DEFAULT NULL,
`money` INT NOT NULL,
`owner` VARCHAR(40) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `index_addon_account_data_account_name_owner` (`account_name`, `owner`),
INDEX `index_addon_account_data_account_name` (`account_name`)
);