Table product_descriptions
Description
Stores information about products that can be translated into multiple languages.
Table Details
Columns
| Field | Type | Description |
| id | int(10) unsigned | A unique, auto incremented value, to identify each products description record. |
| product_id | int(10) unsigned | Cross-reference link to the products table. |
| language_id | int(10) unsigned | Cross-reference link to the languages table. |
| product_name | varchar(255) | The name of the product. |
| product_summary | varchar(255) | A summary of the product. |
| product_description | text | A description of the product. |
| product_url | varchar(255) | The language specific URL of the product (e.g. the product page on the manufacturers web site). |
| meta_keywords | text | The lists of all the keywords for searching. |
| meta_description | text | The lists of all the descriptions for searching. |
| thumb_image | varchar(255) | The path and filename of the product thumb image. |
| full_image | varchar(255) | The path and filename of the product full image. |
Indexes
| Field | Type |
| id | PRIMARY |
