/** * RoundCube Calendar * * Plugin to add a calendar to RoundCube. * * @version 0.2 BETA 2 * @author Lazlo Westerhof * @url http://rc-calendar.lazlo.me * @licence GNU GPL * @copyright (c) 2010 Lazlo Westerhof - Netherlands * **/ CREATE TABLE `events` ( `event_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', `start` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `end` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `summary` varchar(255) NOT NULL, `description` text NOT NULL, `category` varchar(255) NOT NULL DEFAULT '', `all_day` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY(`event_id`), CONSTRAINT `user_id_fk_events` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;