Table product_attributes
Description
Stores information about product attributes/properties and their values.
Table Details
Columns
| Field | Type | Description |
| id | int(10) unsigned | A unique, auto incremented value, to identify each product attribute record. |
| product_id | int(10) unsigned | Cross-reference link to the products table. |
| attribute_name | char(255) | The name of the attribute. |
| attribute_value | char(255) | The value of the attribute. |
Indexes
| Field | Type |
| id | PRIMARY |
