Tables [dbo].[ShTrackingConfigAttributeStatuses]
PropertyValue
Row Count (~)0
Created1:00:45 AM Thursday, March 21, 2019
Last Modified1:15:34 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ShTrackingConfigAttributeStatuses: ShTrackingConfigAttributeStatusIDShTrackingConfigAttributeStatusIDint4
False
1 - 1
Foreign Keys FK_ShTrackingConfigAttributeStatuses_ShTrackingConfigAttributeID_ShTrackingConfigAttributes: [dbo].[ShTrackingConfigAttributes].ShTrackingConfigAttributeIDShTrackingConfigAttributeIDint4
False
Foreign Keys FK_ShTrackingConfigAttributeStatuses_ShEntryTypeID_ShEntryTypes: [dbo].[ShEntryTypes].ShEntryTypeIDShEntryTypeIDint4
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ShTrackingConfigAttributeStatuses: ShTrackingConfigAttributeStatusIDPK_ShTrackingConfigAttributeStatusesShTrackingConfigAttributeStatusID
True
80
NameColumns
FK_ShTrackingConfigAttributeStatuses_ShEntryTypeID_ShEntryTypesShEntryTypeID->[dbo].[ShEntryTypes].[ShEntryTypeID]
FK_ShTrackingConfigAttributeStatuses_ShTrackingConfigAttributeID_ShTrackingConfigAttributesShTrackingConfigAttributeID->[dbo].[ShTrackingConfigAttributes].[ShTrackingConfigAttributeID]
CREATE TABLE [dbo].[ShTrackingConfigAttributeStatuses]
(
[ShTrackingConfigAttributeStatusID] [int] NOT NULL IDENTITY(1, 1),
[ShTrackingConfigAttributeID] [int] NOT NULL,
[ShEntryTypeID] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShTrackingConfigAttributeStatuses] ADD CONSTRAINT [PK_ShTrackingConfigAttributeStatuses] PRIMARY KEY CLUSTERED  ([ShTrackingConfigAttributeStatusID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShTrackingConfigAttributeStatuses] ADD CONSTRAINT [FK_ShTrackingConfigAttributeStatuses_ShEntryTypeID_ShEntryTypes] FOREIGN KEY ([ShEntryTypeID]) REFERENCES [dbo].[ShEntryTypes] ([ShEntryTypeID])
GO
ALTER TABLE [dbo].[ShTrackingConfigAttributeStatuses] ADD CONSTRAINT [FK_ShTrackingConfigAttributeStatuses_ShTrackingConfigAttributeID_ShTrackingConfigAttributes] FOREIGN KEY ([ShTrackingConfigAttributeID]) REFERENCES [dbo].[ShTrackingConfigAttributes] ([ShTrackingConfigAttributeID])
GO