Difference between revisions of "Production.ProductPhoto (table)"
Line 75: | Line 75: | ||
| ProductPhotoID | | ProductPhotoID | ||
|} | |} | ||
− | |||
== automatically generated == | == automatically generated == | ||
Line 97: | Line 96: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
− | | '''Description | + | | '''Description / PK / Index |
− | |||
− | |- | + | |- valign="top" |
| ProductPhotoID | | ProductPhotoID | ||
| int | | int | ||
| not null | | not null | ||
| | | | ||
− | | Primary key for ProductPhoto records. | + | | Primary key for ProductPhoto records.PK_ProductPhoto_ProductPhotoID |
− | + | |- valign="top" | |
− | |- | ||
| ThumbNailPhoto | | ThumbNailPhoto | ||
| varbinary(max) | | varbinary(max) | ||
Line 113: | Line 110: | ||
| | | | ||
| Small image of the product. | | Small image of the product. | ||
− | + | |- valign="top" | |
− | |- | ||
| ThumbnailPhotoFileName | | ThumbnailPhotoFileName | ||
| nvarchar(50) | | nvarchar(50) | ||
Line 120: | Line 116: | ||
| | | | ||
| Small image file name. | | Small image file name. | ||
− | + | |- valign="top" | |
− | |- | ||
| LargePhoto | | LargePhoto | ||
| varbinary(max) | | varbinary(max) | ||
Line 127: | Line 122: | ||
| | | | ||
| Large image of the product. | | Large image of the product. | ||
− | + | |- valign="top" | |
− | |- | ||
| LargePhotoFileName | | LargePhotoFileName | ||
| nvarchar(50) | | nvarchar(50) | ||
Line 134: | Line 128: | ||
| | | | ||
| Large image file name. | | Large image file name. | ||
− | + | |- valign="top" | |
− | |- | ||
| ModifiedDate | | ModifiedDate | ||
| datetime | | datetime | ||
Line 141: | Line 134: | ||
| (GETDATE()) | | (GETDATE()) | ||
| Date and time the record was last updated. | | Date and time the record was last updated. | ||
− | |||
|} | |} | ||
Revision as of 23:57, 26 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 |