because its an int not a string
Use these SQLS:
ALTER TABLE `items` ADD (
`boots` int(11) NOT NULL default 0,
`helmet` int(11) NOT NULL default 0,
`breastplate` int(11) NOT NULL default 0,
`leggings` int(11) NOT NULL default 0,
`gloves` int(11) NOT NULL default 0
);