Production.ProductPhoto Table
Information
| Name | ProductPhoto |
| 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 |
| ProductPhoto | TABLE | MS_Description | Product images. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ProductPhotoID | int |   | | | |   | |
| |   |   | ThumbNailPhoto | varbinary(max) |   | | | |   | |
| |   |   | ThumbnailPhotoFileName | nvarchar(50) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | LargePhoto | varbinary(max) |   | | | |   | |
| |   |   | LargePhotoFileName | nvarchar(50) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
SQL Script
CREATE TABLE [Production].[ProductPhoto] (
[ProductPhotoID] int NOT NULL IDENTITY,
[ThumbNailPhoto] varbinary(max) NULL,
[ThumbnailPhotoFileName] nvarchar(50) NULL,
[LargePhoto] varbinary(max) NULL,
[LargePhotoFileName] nvarchar(50) NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);