mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 14:01:35 +00:00
19 lines
427 B
SQL
19 lines
427 B
SQL
USE `essentialmode`;
|
|
|
|
CREATE TABLE `shops` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`store` varchar(100) NOT NULL,
|
|
`item` varchar(100) NOT NULL,
|
|
`price` int(11) 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)
|
|
; |