Production.ProductDocument Table
Information
| Name | ProductDocument |
| Schema | Production |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:54 |
Extended Properties
| Name | Type | Property Name | Value |
| ProductDocument | TABLE | MS_Description | Cross-reference table mapping products to related product documents. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ProductID | int |   | | Production.Product.ProductID | |   | |
|   |   |   | DocumentID | int |   | | Production.Document.DocumentID | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Foreign Key Constraints
SQL Script
CREATE TABLE [Production].[ProductDocument] (
[ProductID] int NOT NULL,
[DocumentID] int NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);