From f2562ce5fbccd4cac3e4eb5c8ee54599310f6e30 Mon Sep 17 00:00:00 2001 From: ecmu Date: Mon, 18 Jul 2016 14:27:12 +0200 Subject: [PATCH] Issue 187 : Install framadate in non empty database --- app/classes/Framadate/Migration/From_0_0_to_0_8_Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/classes/Framadate/Migration/From_0_0_to_0_8_Migration.php b/app/classes/Framadate/Migration/From_0_0_to_0_8_Migration.php index 01ea838..5591155 100644 --- a/app/classes/Framadate/Migration/From_0_0_to_0_8_Migration.php +++ b/app/classes/Framadate/Migration/From_0_0_to_0_8_Migration.php @@ -48,7 +48,7 @@ class From_0_0_to_0_8_Migration implements Migration { * @return bool true is the Migration should be executed. */ function preCondition(\PDO $pdo) { - $stmt = $pdo->query('SHOW TABLES'); + $stmt = $pdo->query('SHOW TABLES like \'' . TABLENAME_PREFIX . '%\''); //issue187 : pouvoir installer framadate dans une base contenant d'autres tables. $tables = $stmt->fetchAll(\PDO::FETCH_COLUMN); // Check if there is no tables but the MIGRATION_TABLE one