SQL weight

This commit is contained in:
rex2630
2020-01-06 15:53:05 +01:00
committed by GitHub
parent bde5d69c1a
commit 37474d5d75
+4 -4
View File
@@ -1,6 +1,6 @@
USE `essentialmode`;
INSERT INTO `items` (`name`, `label`, `limit`) VALUES
('bread', 'Bröd', 10),
('water', 'Vatten', 5)
;
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
('bread', 'Bröd', 1),
('water', 'Vatten', 1)
;