From 8fcff36dcd36ad59f7b44b6acf2fffbd2b0cba2e Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 23 Apr 2016 15:12:30 -0400 Subject: [PATCH] CRM-18006 - Specify db engine for civicrm_install_canary table --- Civi/Core/InstallationCanary.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/Core/InstallationCanary.php b/Civi/Core/InstallationCanary.php index 3fd967bcbd..e94dbe8575 100644 --- a/Civi/Core/InstallationCanary.php +++ b/Civi/Core/InstallationCanary.php @@ -53,7 +53,7 @@ class InstallationCanary { throw new \CRM_Core_Exception("Found installation canary. This suggests that something went wrong with tracking installation process. Please post to forum or JIRA."); } \Civi::log()->info('Creating canary table'); - \CRM_Core_DAO::executeQuery('CREATE TABLE civicrm_install_canary (id int(10) unsigned NOT NULL)'); + \CRM_Core_DAO::executeQuery('CREATE TABLE civicrm_install_canary (id int(10) unsigned NOT NULL) ENGINE=InnoDB'); } } -- 2.25.1