Tables [dbo].[ca_cic_patch]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count0
Created4:35:54 PM Wednesday, March 24, 2010
Last Modified4:35:54 PM Wednesday, March 24, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_ca_cic_patch_uuid: uuiduuidbinary(16)16
No
statustinyint1
Yes
typetinyint1
Yes
when_scheduledint4
Yes
when_startedint4
Yes
when_completedint4
Yes
stored_locationnvarchar(1024)2048
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_ca_cic_patch_uuid: uuidPK_ca_cic_patch_uuiduuid
Yes
SQL Script
CREATE TABLE [dbo].[ca_cic_patch]
(
[uuid] [binary] (16) NOT NULL,
[status] [tinyint] NULL,
[type] [tinyint] NULL,
[when_scheduled] [int] NULL,
[when_started] [int] NULL,
[when_completed] [int] NULL,
[stored_location] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ca_cic_patch] ADD CONSTRAINT [PK_ca_cic_patch_uuid] PRIMARY KEY CLUSTERED ([uuid]) ON [PRIMARY]
GO
Uses