Skip to content

Commit d043b90

Browse files
committed
update system variable table definition, update baseline data
1 parent a138195 commit d043b90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

SqlScripts/004_AddNumber.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ BEGIN
3333
[Code] [nvarchar](255) NOT NULL
3434
CONSTRAINT [UQ_SystemVariables_Code] UNIQUE([Code]),
3535
[Caption] [nvarchar](max) NULL,
36-
[Type] [nvarchar](max) NOT NULL,
36+
[Type] [nvarchar](255) NOT NULL,
3737
[RawValue] [nvarchar](max) NOT NULL,
3838
)
3939
;
4040

4141
INSERT INTO [SystemVariables]
42-
([CreatedOn], [Code], [Type], [RawValue])
42+
([CreatedOn], [Code], [Type], [RawValue], [Caption])
4343
VALUES
44-
(GETDATE(), 'LastCommentNumber', 'Int', '0'),
45-
(GETDATE(), 'IsChangeNumberUnique', 'Bool', 'false')
44+
(GETDATE(), 'LastCommentNumber', 'Int', '0', N'Sequence number of latest added comment'),
45+
(GETDATE(), 'IsChangeNumberUnique', 'Bool', 'false', N'Is comments table modified with number column unique constraint')
4646
;
4747

4848
INSERT INTO [ScriptLog]

0 commit comments

Comments
 (0)