Difference between revisions of "Production.ProductPhoto (table)"
Line 103: | Line 103: | ||
| not null | | not null | ||
| | | | ||
− | | Primary key for ProductPhoto records.PK_ProductPhoto_ProductPhotoID | + | | Primary key for ProductPhoto records.<br />PK_ProductPhoto_ProductPhotoID |
|- valign="top" | |- valign="top" | ||
| ThumbNailPhoto | | ThumbNailPhoto | ||
Line 109: | Line 109: | ||
| null | | null | ||
| | | | ||
− | | Small image of the product. | + | | Small image of the product.<br /> |
|- valign="top" | |- valign="top" | ||
| ThumbnailPhotoFileName | | ThumbnailPhotoFileName | ||
Line 115: | Line 115: | ||
| null | | null | ||
| | | | ||
− | | Small image file name. | + | | Small image file name.<br /> |
|- valign="top" | |- valign="top" | ||
| LargePhoto | | LargePhoto | ||
Line 121: | Line 121: | ||
| null | | null | ||
| | | | ||
− | | Large image of the product. | + | | Large image of the product.<br /> |
|- valign="top" | |- valign="top" | ||
| LargePhotoFileName | | LargePhotoFileName | ||
Line 127: | Line 127: | ||
| null | | null | ||
| | | | ||
− | | Large image file name. | + | | Large image file name.<br /> |
|- valign="top" | |- valign="top" | ||
| ModifiedDate | | ModifiedDate | ||
Line 133: | Line 133: | ||
| not null | | not null | ||
| (GETDATE()) | | (GETDATE()) | ||
− | | Date and time the record was last updated. | + | | Date and time the record was last updated.<br /> |
|} | |} | ||
Revision as of 00:10, 27 November 2009
wikibot
Table | Production.ProductPhoto |
Column | Data Type | Nullable | Default | PK | Index |
ProductPhotoID | int | not null | PK_ProductPhoto_ProductPhotoID | ||
ThumbNailPhoto | varbinary(max) | null | |||
ThumbnailPhotoFileName | nvarchar(50) | null | |||
LargePhoto | varbinary(max) | null | |||
LargePhotoFileName | nvarchar(50) | null | |||
ModifiedDate | datetime | not null | (getdate()) |
Detail Table | Column | Referencing Column |
Production.ProductProductPhoto | ProductPhotoID | ProductPhotoID |
automatically generated
Table | Production.ProductPhoto |
Description | Product images. |
Column | Data Type | Nullable | Default | Description / PK / Index |
ProductPhotoID | int | not null | Primary key for ProductPhoto records. PK_ProductPhoto_ProductPhotoID | |
ThumbNailPhoto | varbinary(max) | null | Small image of the product. | |
ThumbnailPhotoFileName | nvarchar(50) | null | Small image file name. | |
LargePhoto | varbinary(max) | null | Large image of the product. | |
LargePhotoFileName | nvarchar(50) | null | Large image file name. | |
ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
Detail Table | Column | Referencing Column |
Production.ProductProductPhoto | ProductPhotoID | ProductPhotoID |