On Microsoft SQL Server, Error 1060 means you’re trying to add a table, index, or constraint that already exists — a duplicate object.
To fix it: check whether the object name exists (use sys.objects or information_schema), rename or drop the duplicate, then retry your schema change.