Tables [dbo].[GLDistributionCodes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:22 AM Thursday, March 21, 2019
Last Modified1:11:04 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_GLDistributionCodes: DistributionCodeIDDistributionCodeIDint4
False
1 - 1
DistributionCodevarchar(15)15
False
Descriptionvarchar(50)50
False
Activebit1
False
((1))
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_GLDistributionCodes: DistributionCodeIDPK_GLDistributionCodesDistributionCodeID
True
80
CREATE TABLE [dbo].[GLDistributionCodes]
(
[DistributionCodeID] [int] NOT NULL IDENTITY(1, 1),
[DistributionCode] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Description] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Active] [bit] NOT NULL CONSTRAINT [DF_GLDistributionCodes_Active] DEFAULT ((1)),
[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_GLDistributionCodes_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_GLDistributionCodes_LastUpdate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GLDistributionCodes] ADD CONSTRAINT [PK_GLDistributionCodes] PRIMARY KEY CLUSTERED  ([DistributionCodeID]) ON [PRIMARY]
GO