Disable foreign-key checks when dropping tables
This commit is contained in:
parent
67568dda20
commit
cea470c81c
1 changed files with 3 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
||||||
* @licence GNU AGPL
|
* @licence GNU AGPL
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `kolab_folders`;
|
DROP TABLE IF EXISTS `kolab_folders`;
|
||||||
|
|
||||||
|
@ -185,5 +186,6 @@ CREATE TABLE `kolab_cache_freebusy` (
|
||||||
INDEX `freebusy_uid2msguid` (`folder_id`,`uid`,`msguid`)
|
INDEX `freebusy_uid2msguid` (`folder_id`,`uid`,`msguid`)
|
||||||
) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
|
) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
|
||||||
|
|
||||||
|
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
|
||||||
|
|
||||||
INSERT INTO `system` (`name`, `value`) VALUES ('libkolab-version', '2015020600');
|
REPLACE INTO `system` (`name`, `value`) VALUES ('libkolab-version', '2015020600');
|
||||||
|
|
Loading…
Add table
Reference in a new issue