PRODUCT

Description

Table for storing product information.

Columns

Column Name Data Type Description
ID bigint(20)

NOT NULL

Primary key for the table.
COST_TO_BUDGET double

NOT NULL

Cost to budget ratio for the product.
DESCRIPTION longtext

NOT NULL

Description of the product.
FULFILLMENT_PRODUCT_ID varchar(255)

NOT NULL

Fulfillment product ID for the product.
PRODUCT_ID varchar(255)

NOT NULL

Product ID for the product.
PRODUCTS_CAMPAIGN_CORE_IMMUT_0 bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the

CAMPAIGN_CORE_IMMUTABLE_ELEM_0

table.

PRODUCTS_HJORDER int(11)

DEFAULT NULL

Order of the product.

Foreign Key Relationships

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