mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 08:13:21 +00:00
Add files
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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)
|
||||
;
|
||||
Reference in New Issue
Block a user