Production.ProductProductPhoto Table
Information
| Name | ProductProductPhoto |
| 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 |
| ProductProductPhoto | TABLE | MS_Description | Cross-reference table mapping products and product photos. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ProductID | int |   | | Production.Product.ProductID | |   | |
|   |   |   | ProductPhotoID | int |   | | Production.ProductPhoto.ProductPhotoID | |   | |
| |   |   | Primary | bit |   | | | ((0)) |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Foreign Key Constraints
SQL Script
CREATE TABLE [Production].[ProductProductPhoto] (
[ProductID] int NOT NULL,
[ProductPhotoID] int NOT NULL,
[Primary] bit NOT NULL DEFAULT ((0)),
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);