If you want to add a new column as an identity column:
ALTER TABLE [tablename] ADD COLUMN [columnName] int NOT NULL IDENTITY(1,1) GO ALTER TABLE [tablename] ADD PRIMARY KEY ([columnName])
If you are trying to use the SQL 2008 constructor, there is a parameter that you must turn off so that the designer can reset and recreate the table.
source share