-- Create Table Statement for 'EFT Profit Stars Profile'
DROP TABLE IF EXISTS `EFT_PROFIT_STARS_PROFILE`;
CREATE TABLE `EFT_PROFIT_STARS_PROFILE` (
ID bigint(20) NOT NULL,
STORE_ID bigint(20),
STORE_KEY varchar,
ENTITY_ID int(11),
LOCATION_ID int(11),
IP_ADDRESS varchar,
PRIMARY KEY (ID)
) ENGINE=InnoDB;