CREATE TABLE IF NOT EXISTS `calendar_events` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `category_id` int(11) DEFAULT NULL, `event_title` varchar(255) DEFAULT NULL, `location` varchar(255) DEFAULT NULL, `description` text, `event_date` date DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `status` enum('T','F') NOT NULL DEFAULT 'T', `modified` datetime DEFAULT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; 例: INSERT INTO `calendar_events` (`id`,`category_id`, `event_title`, `location`, `description`, `event_date`, `start_time`, `end_time`, `status`, `modified`, `created`) VALUES (1, 1, 'サルサ テスト', '東京','

サルサ テスト

\r\n

 

\r\n

サルサ テストサルサ テストサルサ テスト

\r\n

 

\r\n

 

\r\n

サルサ テストサルサ テストサルサ テストサルサ テストサルサ テストサルサ テスト

', '2018-12-17', '14:30:00', '15:30:00', 'T', NULL, '2018-12-15 23:24:07');