You seem to have a unique index defined on that field. A unique index prevents duplicate values for the field it's associated with. If you're sure it's not needed, you can get rid of it by first finding out its name with a SHOW CREATE TABLE comand, then dropping it with an ALTER TABLE ... DROP INDEX command.