Tables [dbo].[ARChargeMethods]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:55:56 AM Thursday, March 21, 2019
Last Modified1:16:01 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_ARChargeMethods: ChargeMethodIDChargeMethodIDint4
False
ChargeMethodvarchar(64)64
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ARChargeMethods: ChargeMethodIDPK_ARChargeMethodsChargeMethodID
True
80
CREATE TABLE [dbo].[ARChargeMethods]
(
[ChargeMethodID] [int] NOT NULL,
[ChargeMethod] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARChargeMethods] ADD CONSTRAINT [PK_ARChargeMethods] PRIMARY KEY CLUSTERED  ([ChargeMethodID]) ON [PRIMARY]
GO