mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 10:18:54 +00:00
9b78b2d5c0
int - Integer display width is deprecated and will be removed in a future release.
20 lines
418 B
SQL
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)
|
|
;
|