PROPOSAL

Description

Table for storing proposal information.

Columns

Column Name Data Type Description
ID bigint(20)

NOT NULL

Primary key for the table.
ATTRIBUTES longtext

NOT NULL

Attributes of the proposal.
NAME varchar(255)

NOT NULL

Name of the proposal.
PROPOSAL_ID varchar(255)

NOT NULL

Proposal ID for the proposal.
FINAL_ELEMENTS_PROPOSAL_BASE_0 bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the RECOMMENDATION_FINAL_ELEMENTS table.

Foreign Key Relationships

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