SQL weight

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