SQL weight

This commit is contained in:
rex2630
2020-01-06 15:52:24 +01:00
committed by GitHub
parent 208a362a5c
commit 68e2fc52bf
+4 -4
View File
@@ -1,6 +1,6 @@
USE `essentialmode`;
INSERT INTO `items` (`name`, `label`, `limit`) VALUES
('bread', 'Leipä', 10),
('water', 'Vesi', 5)
;
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('bread', 'Leipä', 1),
('water', 'Vesi', 1)
;