-- Create Table Statement for 'Account Balance'
DROP TABLE IF EXISTS `ACCOUNT_BALANCE`;
CREATE TABLE `ACCOUNT_BALANCE` (
ID bigint(20) NOT NULL,
CREATE_DATE datetime,
AMOUNT int(11),
MERCHANT_ACCOUNT_CODE int(11) NOT NULL,
CUSTOMER_ACCOUNT_FK bigint(20),
PRIMARY KEY (ID)
) ENGINE=InnoDB;