PRODUCT_PROPERTY

Description

Table for storing properties of a product.

Columns

Column Name Data Type Description
ID bigint(20)

NOT NULL

Primary key for the table.
NAME varchar(255)

NOT NULL

Name of the property.
VALUE varchar(255)

NOT NULL

Value of the property.
PROPERTIES_PRODUCT_ID bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the PRODUCT table.
PROPERTIES_HJORDER int(11)

DEFAULT NULL

Order of the property.

Foreign Key Relationships

  • FOREIGN KEY ( PROPERTIES_PRODUCT_ID ) REFERENCES PRODUCT ( ID ): Establishes a foreign key relationship with the PRODUCT table.