· 7 years ago · Jan 16, 2019, 11:54 AM
1CREATE TABLE IF NOT EXISTS `events`
2(
3 `entry` tinyint(3) unsigned NOT NULL COMMENT 'Entry of the event',
4 `start` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
5 `end` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
6 PRIMARY KEY (`entry`)
7) ENGINE=MyISAM DEFAULT CHARSET=utf8;
8
92012-01-01 13:00:00
10
112012-01-01 12:00:00