Created
September 2, 2012 04:37
-
-
Save zvineyard/3594863 to your computer and use it in GitHub Desktop.
SQL: Transaction Log for authorize.net
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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