Fixed sql file inproper weight type

This commit is contained in:
ElPumpo
2019-10-19 19:38:54 +02:00
parent b2c5044fc9
commit f33c317d6f
+1 -1
View File
@@ -12,7 +12,7 @@ ALTER TABLE `users`
CREATE TABLE `items` (
`name` VARCHAR(50) NOT NULL,
`label` VARCHAR(50) NOT NULL,
`weight` TINYINT(1) NOT NULL DEFAULT 1,
`weight` INT(11) NOT NULL DEFAULT 1,
`rare` TINYINT(1) NOT NULL DEFAULT 0,
`can_remove` TINYINT(1) NOT NULL DEFAULT 1,