ATTRIBUTE_WITH_VALUE
Description
This table stores information about attributes with values.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each attribute with value. |
| NAME | varchar(255) | The name of the attribute. |
| TYPE | varchar(255) | The type of the attribute. |
| VALUE ATTRIBUTE_WITH_VALUE 0 | bigint(20) | Foreign key referencing the ATTRIBUTE_WITH_VALUE_VALUES table. |
Foreign Key Relationships
- VALUE ATTRIBUTE_WITH_VALUE 0 references ATTRIBUTE_WITH_VALUE_VALUES_(ID)