1
+ CREATE TABLE [dbo].[AFElementAttributeCategory](
2
+ [rid] [bigint] IDENTITY (- 1 ,- 1 ) NOT NULL ,
3
+ [id] [uniqueidentifier] NOT NULL ,
4
+ [rowversion] [timestamp] NOT NULL ,
5
+ [fkelementversionid] [bigint] NOT NULL ,
6
+ [fkparentattributeid] [uniqueidentifier] NULL ,
7
+ [fkcategoryid] [uniqueidentifier] NOT NULL ,
8
+ [changedby] [int] NOT NULL ,
9
+ CONSTRAINT [PK_AFElementAttributeCategory] PRIMARY KEY CLUSTERED
10
+ (
11
+ [rid] ASC
12
+ )WITH (PAD_INDEX = OFF , STATISTICS_NORECOMPUTE = OFF , IGNORE_DUP_KEY = OFF , ALLOW_ROW_LOCKS = ON , ALLOW_PAGE_LOCKS = ON ) ON [ASSETS]
13
+ ) ON [ASSETS]
14
+ GO
15
+
16
+ CREATE TABLE [dbo].[AFCaseAdjustment](
17
+ [rid] [bigint] IDENTITY (- 1 ,- 1 ) NOT NULL ,
18
+ [id] [uniqueidentifier] NOT NULL ,
19
+ [rowversion] [timestamp] NOT NULL ,
20
+ [fkcaseid] [bigint] NOT NULL ,
21
+ [attributeid] [uniqueidentifier] NOT NULL ,
22
+ [adjustedvalue] [varbinary](max ) NULL ,
23
+ [comment] [nvarchar](1000 ) NULL ,
24
+ [previousvalue] [varbinary](max ) NULL ,
25
+ [creator] [nvarchar](50 ) NULL ,
26
+ [creationdate] [datetime2](7 ) NULL ,
27
+ [changedby] [int] NOT NULL ,
28
+ CONSTRAINT [PK_AFCaseAdjustment] PRIMARY KEY NONCLUSTERED
29
+ (
30
+ [rid] ASC
31
+ )WITH (PAD_INDEX = OFF , STATISTICS_NORECOMPUTE = OFF , IGNORE_DUP_KEY = OFF , ALLOW_ROW_LOCKS = ON , ALLOW_PAGE_LOCKS = ON ) ON [ANALYSIS]
32
+ ) ON [ANALYSIS] TEXTIMAGE_ON [ANALYSIS]
33
+ GO
34
+
35
+ CREATE TABLE [dbo].[sd](
36
+ [rid] [int] IDENTITY (1000 ,1 ) NOT NULL ,
37
+ [rowversion] [timestamp] NOT NULL ,
38
+ [sd] [nvarchar](max ) NOT NULL ,
39
+ [ownerRights] [int] NOT NULL ,
40
+ [lupd] [datetime2](7 ) NULL ,
41
+ CONSTRAINT [pk_sd] PRIMARY KEY CLUSTERED
42
+ (
43
+ [rid] ASC
44
+ )WITH (PAD_INDEX = OFF , STATISTICS_NORECOMPUTE = OFF , IGNORE_DUP_KEY = OFF , ALLOW_ROW_LOCKS = ON , ALLOW_PAGE_LOCKS = ON ) ON [ASSETS]
45
+ ) ON [ASSETS] TEXTIMAGE_ON [ASSETS]
46
+ GO
0 commit comments