mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 17:58:54 +00:00
20 lines
435 B
SQL
20 lines
435 B
SQL
USE `essentialmode`;
|
|
|
|
CREATE TABLE `shops` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(255) NOT NULL,
|
|
`item` varchar(255) NOT NULL,
|
|
`price` int(11) NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
);
|
|
|
|
INSERT INTO `shops` (name, item, price) VALUES
|
|
('TwentyFourSeven','bread',30),
|
|
('TwentyFourSeven','water',15),
|
|
('RobsLiquor','bread',30),
|
|
('RobsLiquor','water',15),
|
|
('LTDgasoline','bread',30),
|
|
('LTDgasoline','water',15)
|
|
; |