Tables [dbo].[ICConfigServiceDetails]
PropertyValue
Row Count (~)0
Created12:57:27 AM Thursday, March 21, 2019
Last Modified1:02:24 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
ConfigServiceIDint4
False
Cluster Primary Key PK_ICConfigServiceDetails: DetailIDDetailIDint4
False
1 - 1
Ratedecimal(10,6)9
False
((0))
Overagedecimal(10,6)9
False
((0))
Volumeint4
False
((0))
BaseCostmoney8
True
((0))
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ICConfigServiceDetails: DetailIDPK_ICConfigServiceDetailsDetailID
True
80
CREATE TABLE [dbo].[ICConfigServiceDetails]
(
[ConfigServiceID] [int] NOT NULL,
[DetailID] [int] NOT NULL IDENTITY(1, 1),
[Rate] [decimal] (10, 6) NOT NULL CONSTRAINT [DF_ICConfigServiceDetails_Rate] DEFAULT ((0)),
[Overage] [decimal] (10, 6) NOT NULL CONSTRAINT [DF_ICConfigServiceDetails_Overage] DEFAULT ((0)),
[Volume] [int] NOT NULL CONSTRAINT [DF_ICConfigServiceDetails_Volume] DEFAULT ((0)),
[BaseCost] [money] NULL CONSTRAINT [DF_ICConfigServiceDetails_BaseCost] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ICConfigServiceDetails] ADD CONSTRAINT [PK_ICConfigServiceDetails] PRIMARY KEY CLUSTERED  ([DetailID]) ON [PRIMARY]
GO