Tables [dbo].[SALeasingTermDetails]
PropertyValue
Row Count (~)0
Created12:59:02 AM Thursday, March 21, 2019
Last Modified1:06:26 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
LeasingTermIDint4
False
Cluster Primary Key PK_SALeasingTermDetails: DetailIDDetailIDint4
False
1 - 1
leaseFactordecimal(10,6)9
True
minLeaseAmountmoney8
False
leasePointsdecimal(10,6)9
True
((0))
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SALeasingTermDetails: DetailIDPK_SALeasingTermDetailsDetailID
True
80
CREATE TABLE [dbo].[SALeasingTermDetails]
(
[LeasingTermID] [int] NOT NULL,
[DetailID] [int] NOT NULL IDENTITY(1, 1),
[leaseFactor] [decimal] (10, 6) NULL,
[minLeaseAmount] [money] NOT NULL,
[leasePoints] [decimal] (10, 6) NULL CONSTRAINT [DF_SALeasingTermDetails_leasePoints] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SALeasingTermDetails] ADD CONSTRAINT [PK_SALeasingTermDetails] PRIMARY KEY CLUSTERED  ([DetailID]) ON [PRIMARY]
GO