Production.ProductModelIllustration Table

Information

NameProductModelIllustration
SchemaProduction
Row Count0
Data Size 
Index Size 
Reserved Size 
Unused Size 
Created29.3.2010. 21:58:18
Modified29.3.2010. 21:58:54

Extended Properties

NameTypeProperty NameValue
ProductModelIllustrationTABLEMS_DescriptionCross-reference table mapping product models and illustrations.

Columns

PKKeyIdentityNameData TypeAllow NullsCollationReferencesDefaultComputedCompute Expression
   ProductModelIDint  Production.ProductModel.ProductModelID
 
 
 
   IllustrationIDint  Production.Illustration.IllustrationID
 
 
 
   ModifiedDatedatetime   
(getdate())
 
 

Indexes

NameTypePrimaryUniqueColumns
PK_ProductModelIllustration_ProductModelID_IllustrationIDClustered  ProductModelID, IllustrationID

Foreign Key Constraints

NameTypeReferenced Table
FK_ProductModelIllustration_Illustration_IllustrationIDForeign keyProduction.Illustration
FK_ProductModelIllustration_ProductModel_ProductModelIDForeign keyProduction.ProductModel

SQL Script

CREATE TABLE [Production].[ProductModelIllustration] (
    [ProductModelID] int NOT NULL,
    [IllustrationID] int NOT NULL,
    [ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);