Hello,I am creating a the following table:create table dbo.Profiles( Id int not null constraint Profiles_Id_PK primary key clustered (Id), Curriculum varbinary (max) filestream null constraint Profiles_Curriculum_DF default (0x), [Key] uniqueidentifier rowguidcol not null constraint Profiles_Key_U unique) filestream_on [STORAGE]
When I recreate the database using the new VS 2010 database projects I get an error on following code line: [Key] uniqueidentifier rowguidcol not null constraint Profiles_Key_U unique
But the problem disappears if I use: [Key] uniqueidentifier rowguidcol not null unique
Aren't both code lines the same?Thank You,Miguel