Tables [dbo].[MTFormulaTemplates]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:24 AM Thursday, March 21, 2019
Last Modified1:12:40 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_MTFormulaTemplates: FormulaTemplateIDFormulaTemplateIDint4
False
1 - 1
Descriptionvarchar(50)50
True
Formulavarchar(255)255
False
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
UpdateDatedatetime8
False
(getdate())
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_MTFormulaTemplates: FormulaTemplateIDPK_MTFormulaTemplatesFormulaTemplateID
True
80
CREATE TABLE [dbo].[MTFormulaTemplates]
(
[FormulaTemplateID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Formula] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[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_MTFormulaTemplates_CreateDate] DEFAULT (getdate()),
[UpdateDate] [datetime] NOT NULL CONSTRAINT [DF_MTFormulaTemplates_UpdateDate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MTFormulaTemplates] ADD CONSTRAINT [PK_MTFormulaTemplates] PRIMARY KEY CLUSTERED  ([FormulaTemplateID]) ON [PRIMARY]
GO