elayaraja007 / sql-dbdiff

Automatically exported from code.google.com/p/sql-dbdiff
0 stars 0 forks source link

DB Diff does not copy Identity columns #36

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When a table has an identity column, 

CREATE TABLE [dbo].[ABC](
    [UserID] [numeric](18, 0) IDENTITY(1,1) NOT NULL,
    [UserName] [nvarchar](50) NULL)

the IDENTITY(1,1) portion is not identified as a diff

Original issue reported on code.google.com by shi...@gmail.com on 23 Aug 2010 at 7:32