Tables [dbo].[RPPresCategories]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:44 AM Thursday, March 21, 2019
Last Modified1:13:59 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_RPPresCategories: CategoryIDCategoryIDint4
False
Categoryvarchar(64)64
True
Descriptionvarchar(256)256
True
SegmentIDint4
True
Foreign Keys FK_RPPresCategories_PresTypeID_RPPresTypes: [dbo].[RPPresTypes].PresTypeIDPresTypeIDint4
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_RPPresCategories: CategoryIDPK_RPPresCategoriesCategoryID
True
80
NameColumns
FK_RPPresCategories_PresTypeID_RPPresTypesPresTypeID->[dbo].[RPPresTypes].[PresTypeID]
CREATE TABLE [dbo].[RPPresCategories]
(
[CategoryID] [int] NOT NULL,
[Category] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Description] [varchar] (256) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[SegmentID] [int] NULL,
[PresTypeID] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPPresCategories] ADD CONSTRAINT [PK_RPPresCategories] PRIMARY KEY CLUSTERED  ([CategoryID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPPresCategories] ADD CONSTRAINT [FK_RPPresCategories_PresTypeID_RPPresTypes] FOREIGN KEY ([PresTypeID]) REFERENCES [dbo].[RPPresTypes] ([PresTypeID])
GO