Skip to content

Instantly share code, notes, and snippets.

Created March 19, 2013 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5b1fba87793750a9c230 to your computer and use it in GitHub Desktop.
Save anonymous/5b1fba87793750a9c230 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS `invoices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`refund_addr` varchar(34) NOT NULL,
`paid` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment