Tables [dbo].[SCBillingLaborCodeOverrides]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:59:07 AM Thursday, March 21, 2019
Last Modified1:14:39 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_SCBillingLaborCodeOverrides: BillingLaborCodeID\ActivityCodeIDForeign Keys FK_SCBillingLaborCodeOverrides_BillingLaborCodeID_SCBillingLaborCodes: [dbo].[SCBillingLaborCodes].BillingLaborCodeIDBillingLaborCodeIDint4
False
Cluster Primary Key PK_SCBillingLaborCodeOverrides: BillingLaborCodeID\ActivityCodeIDActivityCodeIDint4
False
LaborRatemoney8
False
OvertimeRatemoney8
False
CreatorIDchar(8)8
False
CreateDatedatetime8
False
UpdatorIDchar(8)8
False
LastUpdatedatetime8
False
TimeStamptimestamp8
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SCBillingLaborCodeOverrides: BillingLaborCodeID\ActivityCodeIDPK_SCBillingLaborCodeOverridesBillingLaborCodeID, ActivityCodeID
True
80
NameColumns
FK_SCBillingLaborCodeOverrides_BillingLaborCodeID_SCBillingLaborCodesBillingLaborCodeID->[dbo].[SCBillingLaborCodes].[BillingLaborCodeID]
CREATE TABLE [dbo].[SCBillingLaborCodeOverrides]
(
[BillingLaborCodeID] [int] NOT NULL,
[ActivityCodeID] [int] NOT NULL,
[LaborRate] [money] NOT NULL,
[OvertimeRate] [money] NOT NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[LastUpdate] [datetime] NOT NULL,
[TimeStamp] [timestamp] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SCBillingLaborCodeOverrides] ADD CONSTRAINT [PK_SCBillingLaborCodeOverrides] PRIMARY KEY CLUSTERED  ([BillingLaborCodeID], [ActivityCodeID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SCBillingLaborCodeOverrides] ADD CONSTRAINT [FK_SCBillingLaborCodeOverrides_BillingLaborCodeID_SCBillingLaborCodes] FOREIGN KEY ([BillingLaborCodeID]) REFERENCES [dbo].[SCBillingLaborCodes] ([BillingLaborCodeID])
GO