Create a new version of the table and copy data over. You need to use SET IDENTITY_INSERT ON to insert the existing values. Note that you cannot keep your prefix code.
If there are other tables which refers to this table with a foreign-key constraint, you need to alter the column in this table.
Make sure that don't lose any indexes, triggers, constraints etc when you create the new table, but you need to bring them over to the new table.