Tables [dbo].[RPPres_Allocations]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:43 AM Thursday, March 21, 2019
Last Modified1:13:58 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_RPPres_Allocations: AllocationIDAllocationIDint4
False
1 - 1
Allocationvarchar(64)64
True
Descriptionvarchar(64)64
True
IsSystemTypebit1
True
((0))
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_RPPres_Allocations: AllocationIDPK_RPPres_AllocationsAllocationID
True
80
CREATE TABLE [dbo].[RPPres_Allocations]
(
[AllocationID] [int] NOT NULL IDENTITY(1, 1),
[Allocation] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Description] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[IsSystemType] [bit] NULL CONSTRAINT [DF_RPPres_Allocations_IsSystemType] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPPres_Allocations] ADD CONSTRAINT [PK_RPPres_Allocations] PRIMARY KEY CLUSTERED  ([AllocationID]) ON [PRIMARY]
GO