Tables [dbo].[ARCustomerTypes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:56:43 AM Thursday, March 21, 2019
Last Modified1:10:06 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK_ARCustomerTypes: CustomerTypeIDCustomerTypeIDint4
False
CustomerTypevarchar(15)15
False
Descriptionvarchar(50)50
False
Activebit1
False
Locksint4
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_ARCustomerTypes: CustomerTypeIDPK_ARCustomerTypesCustomerTypeID
True
80
CREATE TABLE [dbo].[ARCustomerTypes]
(
[CustomerTypeID] [int] NOT NULL,
[CustomerType] [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,
[Locks] [int] NOT NULL CONSTRAINT [DF_ARCustomerTypes_Locks] 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_ARCustomerTypes_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_ARCustomerTypes_LastUpdate] DEFAULT (getdate()),
[timestamp] [timestamp] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCustomerTypes] ADD CONSTRAINT [PK_ARCustomerTypes] PRIMARY KEY CLUSTERED  ([CustomerTypeID]) ON [PRIMARY]
GO