Invalid primary key constraint - only one primary key allowed
This message appears when a CREATE TABLE statement attempts to set more than one primary key column constraint, or an ALTER TABLE statement attempts to add a primary key constraint to a table that already has one. A table can have at most one primary key constraint.
If you wish to change the primary key constraint on a table, drop the existing primary key constraint through the ALTER TABLE...DROP CONSTRAINT command, then use the ALTER TABLE...ADD CONSTRAINT command to set the desired primary key constraint.