I had the same problem, although I solved it by creating a table using a script query instead of a graphical one. See below:
USE [Database_Name] GO CREATE TABLE [dbo].[Table_Name]( [tableID] [int] IDENTITY(1,1) NOT NULL, [column_2] [datatype] NOT NULL, [column_3] [datatype] NOT NULL, CONSTRAINT [PK_Table_Name] PRIMARY KEY CLUSTERED ( [tableID] ASC ) )
Muarucha Aug 30 '19 at 1:59 p.m. 2019-08-30 13:59
source share