Production.ProductModelProductDescriptionCulture Table
Information
| Name | ProductModelProductDescriptionCulture |
| 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:56 |
Extended Properties
| Name | Type | Property Name | Value |
| ProductModelProductDescriptionCulture | TABLE | MS_Description | Cross-reference table mapping product descriptions and the language the description is written in. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ProductModelID | int |   | | Production.ProductModel.ProductModelID | |   | |
|   |   |   | ProductDescriptionID | int |   | | Production.ProductDescription.ProductDescriptionID | |   | |
|   |   |   | CultureID | nchar(6) |   | SQL_Latin1_General_CP1_CI_AS | Production.Culture.CultureID | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Foreign Key Constraints
SQL Script
CREATE TABLE [Production].[ProductModelProductDescriptionCulture] (
[ProductModelID] int NOT NULL,
[ProductDescriptionID] int NOT NULL,
[CultureID] nchar(6) NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);