[성현모] UniqueKeyDB PairKey 테이블 추가
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
CREATE TABLE [dbo].[tPairKeyStorage]
|
||||
(
|
||||
[cPrimaryKey] NVARCHAR(50) NOT NULL,
|
||||
[cSecondaryKey] NVARCHAR(50) NOT NULL,
|
||||
[cValue1] NVARCHAR(200),
|
||||
[cValue2] NVARCHAR(200),
|
||||
[cDateTime] DATETIME2 NOT NULL,
|
||||
|
||||
CONSTRAINT PK_cProductKey PRIMARY KEY ([cPrimaryKey]),
|
||||
CONSTRAINT UQ_cMacAddress UNIQUE ([cSecondaryKey]),
|
||||
)
|
||||
Reference in New Issue
Block a user