= array(
        
        'programID' => array('type'=>'INT', 'not_null'=>True, 'default'=>0, 'index'=>True),
        
        'cardNo' => array('type'=>'INT', 'not_null'=>True, 'default'=>0, 'index'=>True),
        'charges' => array('type'=>'MONEY', 'not_null'=>True, 'default'=>0),
        'payments' => array('type'=>'MONEY','not_null'=>True,  'default'=>0),
        
        'tdate' => array('type'=>'DATETIME', 'not_null'=>True),
        'transNum' => array('type'=>'VARCHAR(50)', 'not_null'=>True),
        'ccHistoryID' => array('type'=>'INT','primary_key'=>True, 'increment'=>True)
    )