Files
esx_core-esx-framework/esx_license.sql
T
shortybsd 65d111fca4 Update esx_license.sql
int - Integer display width is deprecated and will be removed in a future release.
2020-05-16 22:28:41 -05:00

17 lines
285 B
SQL

USE `es_extended`;
CREATE TABLE `licenses` (
`type` varchar(60) NOT NULL,
`label` varchar(60) NOT NULL,
PRIMARY KEY (`type`)
);
CREATE TABLE `user_licenses` (
`id` int NOT NULL AUTO_INCREMENT,
`type` varchar(60) NOT NULL,
`owner` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
);