-- Create Table Statement for 'Retail HPG Profile'
DROP TABLE IF EXISTS `RETAIL_HPG_PROFILE`;
CREATE TABLE `RETAIL_HPG_PROFILE` (
	ORIGIN varchar,
	ID bigint(20) NOT NULL,
	PRIMARY KEY (ID)
) ENGINE=InnoDB;