Skip to content

Instantly share code, notes, and snippets.

@felixge
Created July 23, 2008 13:56
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 felixge/1739 to your computer and use it in GitHub Desktop.
Save felixge/1739 to your computer and use it in GitHub Desktop.
DROP TABLE IF EXISTS `community_conditions`;
CREATE TABLE `community_conditions` (
`id` char(36) NOT NULL,
`condition_id` char(36) NOT NULL,
`community_id` char(36) NOT NULL,
PRIMARY KEY (`id`),
KEY `doc` (`condition_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment