SQL weight

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