Tables [dbo].[ICItemWarranties]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:32 AM Thursday, March 21, 2019
Last Modified1:03:09 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_ICItemWarranties: ItemWarrantyIDItemWarrantyIDint4
False
1 - 1
ItemIDint4
False
WarrantyCodeIDint4
False
StartDatedatetime8
False
(getdate())
EndDatedatetime8
True
Activebit1
False
((0))
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
timestamptimestamp8
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ICItemWarranties: ItemWarrantyIDPK_ICItemWarrantiesItemWarrantyID
True
80
CREATE TABLE [dbo].[ICItemWarranties]
(
[ItemWarrantyID] [int] NOT NULL IDENTITY(1, 1),
[ItemID] [int] NOT NULL,
[WarrantyCodeID] [int] NOT NULL,
[StartDate] [datetime] NOT NULL CONSTRAINT [DF_ICItemWarranties_StartDate] DEFAULT (getdate()),
[EndDate] [datetime] NULL,
[Active] [bit] NOT NULL CONSTRAINT [DF_ICItemWarranties_Active] DEFAULT ((0)),
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_ICItemWarranties_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_ICItemWarranties_LastUpdate] DEFAULT (getdate()),
[timestamp] [timestamp] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ICItemWarranties] ADD CONSTRAINT [PK_ICItemWarranties] PRIMARY KEY CLUSTERED  ([ItemWarrantyID]) ON [PRIMARY]
GO