Files
esx_core-esx-framework/esx_shops.sql
T
shortybsd 9b78b2d5c0 Update esx_shops.sql
int - Integer display width is deprecated and will be removed in a future release.
2020-05-16 23:49:48 -05:00

20 lines
418 B
SQL

USE `es_extended`;
CREATE TABLE `shops` (
`id` int NOT NULL AUTO_INCREMENT,
`store` varchar(100) NOT NULL,
`item` varchar(100) NOT NULL,
`price` int NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `shops` (store, item, price) VALUES
('TwentyFourSeven','bread',30),
('TwentyFourSeven','water',15),
('RobsLiquor','bread',30),
('RobsLiquor','water',15),
('LTDgasoline','bread',30),
('LTDgasoline','water',15)
;