Add shops table

This commit is contained in:
manutrix
2022-04-12 07:57:17 -04:00
parent 664f1c41c4
commit f293ef770c
@@ -1,5 +1,14 @@
USE `es_extended`;
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 `items` (`name`, `label`, `weight`) VALUES
('beer', 'Beer', 1)
;