mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 18:58:54 +00:00
65d111fca4
int - Integer display width is deprecated and will be removed in a future release.
17 lines
285 B
SQL
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`)
|
|
);
|