Tables [dbo].[SALeasingTerms]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
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
Cluster Primary Key PK_SALeasingTerms: LeasingTermIDLeasingTermIDint4
False
1 - 1
leaseNamevarchar(50)50
False
('')
leaseCoNamevarchar(50)50
False
('')
termInMonthstinyint1
False
((0))
purchaseOptionsvarchar(50)50
False
('')
activebit1
False
((0))
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SALeasingTerms: LeasingTermIDPK_SALeasingTermsLeasingTermID
True
80
CREATE TABLE [dbo].[SALeasingTerms]
(
[LeasingTermID] [int] NOT NULL IDENTITY(1, 1),
[leaseName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_SALeasingTerms_leaseName] DEFAULT (''),
[leaseCoName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_SALeasingTerms_leaseCoName] DEFAULT (''),
[termInMonths] [tinyint] NOT NULL CONSTRAINT [DF_SALeasingTerms_termInMonths] DEFAULT ((0)),
[purchaseOptions] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_SALeasingTerms_purchaseOptions] DEFAULT (''),
[active] [bit] NOT NULL CONSTRAINT [DF_SALeasingTerms_active] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SALeasingTerms] ADD CONSTRAINT [PK_SALeasingTerms] PRIMARY KEY CLUSTERED  ([LeasingTermID]) ON [PRIMARY]
GO