Skip to content

Instantly share code, notes, and snippets.

@zvineyard
Created September 2, 2012 04:37
Show Gist options
  • Save zvineyard/3594863 to your computer and use it in GitHub Desktop.
Save zvineyard/3594863 to your computer and use it in GitHub Desktop.
SQL: Transaction Log for authorize.net
CREATE TABLE IF NOT EXISTS `transaction_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL,
`response_code` int(11) NOT NULL,
`payment_data` text NOT NULL,
`response_data` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment