Skip to content

Commit 4d35921

Browse files
author
Kevin Martin
committed
changed from SSN to ColumnName
1 parent af5a4cb commit 4d35921

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CREATE TABLE [dbo].[UniqueConstraint]
22
(
3-
[SSN] [char] (11) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
3+
[ColumnName] [char] (11) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
44
) ON [PRIMARY]
55
GO
6-
ALTER TABLE [dbo].[UniqueConstraint] ADD CONSTRAINT [AK_UniqueConstraint_SSN] UNIQUE NONCLUSTERED ([SSN]) ON [PRIMARY]
6+
ALTER TABLE [dbo].[UniqueConstraint] ADD CONSTRAINT [AK_UniqueConstraint_ColumnName] UNIQUE NONCLUSTERED ([ColumnName]) ON [PRIMARY]
77
GO

0 commit comments

Comments
 (0)