Skip to content

Instantly share code, notes, and snippets.

@facumartig
Last active December 20, 2015 00:49
Show Gist options
  • Save facumartig/6044239 to your computer and use it in GitHub Desktop.
Save facumartig/6044239 to your computer and use it in GitHub Desktop.
CREATE TABLE `calendario`.`events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`title` varchar(45) NOT NULL DEFAULT '',
`desc` varchar(200) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment