From 6b6477a90a2fc9b8129ff42f1023b2252e65b5a5 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 13 May 2012 21:22:08 +0200 Subject: [PATCH] fix getting the db scheme from existing database --- 3rdparty/MDB2/Schema.php | 1 + 1 file changed, 1 insertion(+) diff --git a/3rdparty/MDB2/Schema.php b/3rdparty/MDB2/Schema.php index c5ae69d69c..5eeb97b055 100644 --- a/3rdparty/MDB2/Schema.php +++ b/3rdparty/MDB2/Schema.php @@ -644,6 +644,7 @@ class MDB2_Schema extends PEAR if (PEAR::isError($result)) { return $result; } + $database_definition['tables'][$table_name]=$table_definition; }