Tables [dbo].[SAConfigFixedCosts]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:55 AM Thursday, March 21, 2019
Last Modified12:58:55 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_SAConfigFixedCosts: ConfigMiscFixedCostIDConfigMiscFixedCostIDint4
False
1 - 1
CurrentTCODetailIDint4
False
FixedCostNamevarchar(255)255
False
Rateint4
False
Costmoney8
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SAConfigFixedCosts: ConfigMiscFixedCostIDPK_SAConfigFixedCostsConfigMiscFixedCostID
True
80
CREATE TABLE [dbo].[SAConfigFixedCosts]
(
[ConfigMiscFixedCostID] [int] NOT NULL IDENTITY(1, 1),
[CurrentTCODetailID] [int] NOT NULL,
[FixedCostName] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Rate] [int] NOT NULL,
[Cost] [money] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SAConfigFixedCosts] ADD CONSTRAINT [PK_SAConfigFixedCosts] PRIMARY KEY CLUSTERED  ([ConfigMiscFixedCostID]) ON [PRIMARY]
GO