Skip to content

Instantly share code, notes, and snippets.

@cayblood
Created November 13, 2010 05:05
Show Gist options
  • Save cayblood/675102 to your computer and use it in GitHub Desktop.
Save cayblood/675102 to your computer and use it in GitHub Desktop.
CREATE TABLE `booleo` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`is_cool` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 TABLESPACE=MEMORY;
INSERT INTO `booleo` VALUES (1,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment