From: Coleman Watts Date: Sat, 23 Apr 2016 19:12:30 +0000 (-0400) Subject: CRM-18006 - Specify db engine for civicrm_install_canary table X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8fcff36dcd36ad59f7b44b6acf2fffbd2b0cba2e;p=civicrm-core.git CRM-18006 - Specify db engine for civicrm_install_canary table --- 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'); } }