mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 18:28:52 +00:00
11 lines
271 B
SQL
11 lines
271 B
SQL
USE `es_extended`;
|
|
|
|
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
|
|
('cannabis', 'Cannabis', 3, 0, 1),
|
|
('marijuana', 'Marijuana', 2, 0, 1)
|
|
;
|
|
|
|
INSERT INTO `licenses` (`type`, `label`) VALUES
|
|
('weed_processing', 'Weed Processing License')
|
|
;
|