Mercurial > hg > rc1
view plugins/calendar/drivers/kolab/SQL/mysql/2012080600.sql @ 42:db1e51c59ddc
various small fixes from upgrades to PHP and/or hangover from fix to apt-get overwrite at beginning of the year somehow
| author | Charlie Root |
|---|---|
| date | Sun, 26 Jan 2025 13:12:28 -0500 |
| parents | f6fe4b6ae66a |
| children |
line wrap: on
line source
DROP TABLE IF EXISTS `kolab_alarms`; CREATE TABLE `kolab_alarms` ( `event_id` VARCHAR(255) NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `notifyat` DATETIME DEFAULT NULL, `dismissed` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY(`event_id`), CONSTRAINT `fk_kolab_alarms_user_id` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) /*!40000 ENGINE=INNODB */;
