CREATE TABLE new_features_highlights (feature_id INT(11) AUTO_INCREMENT, group_id INT(10), title VARCHAR(100), subtitle VARCHAR (100), bulletpoint VARCHAR(2500), bulletpoint_img VARCHAR(1), active_flag VARCHAR(1) date_created TIMESTAMP, PRIMARY KEY(feature_id)); ALTER TABLE new_features_highlights ADD COLUMN rpt_id INT, ADD FOREIGN KEY fk_nfh_rp_rpt_id(rpt_id) REFERENCES report_params(rpt_id); INSERT INTO new_features_highlights (rpt_id, group_id, title, subtitle, bulletpoint, bulletpoint_img) VALUES (75, 1, "Industry Wide", "Consult: Secure Print Release, also known as Follow Me Print or Find-Me Printing", "Print to a single global queue, walk up, and collect at any device.", 'N'); INSERT INTO new_features_highlights (rpt_id, group_id, title, subtitle, bulletpoint, bulletpoint_img) VALUES (75, 1, NULL, NULL, "We have all heard the saying that Information is Power! Beginning with your next upgrade, FYFM will put you in the driver’s seat.", 'N');