Skip to content

Instantly share code, notes, and snippets.

Created March 22, 2012 17:52
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/2160968 to your computer and use it in GitHub Desktop.
Save anonymous/2160968 to your computer and use it in GitHub Desktop.
CREATE TABLE `teams` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`status` varchar(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `teams` (`id`, `name`, `start_date`, `end_date`, `status`)
VALUES
(1,'TEST','2012-03-24','2012-03-31','WAITING'),
(2,'TEST2','2012-03-27','2012-03-30','START');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment