<t>Make sure that the Key column's datatype is int and then setting identity manually, as image shows<br/>
<br/>
Or just run this code utilizing IDENTITY(seed, increment) modifier<br/>
<br/>
-- ID is the name of the [to be] identity column<br/>
ALTER TABLE [yourTable] DROP COLUMN ID <br/>
ALTER TABLE [yourTable] ADD ID INT IDENTITY(1,1)<br/>
<br/>
```<br/>
<br/>
the code will run, if `ID` is not the only column in the table<br/>
<br/>
*image reference fifo's*</t>