From 0de3661d57c3e41212df1e95b76ddde596647a83 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 13 Oct 2010 16:21:24 -0700 Subject: [PATCH] Fix for PG filtering --- lib/pgsqlschema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php index e8711a6f85..4fde80b55a 100644 --- a/lib/pgsqlschema.php +++ b/lib/pgsqlschema.php @@ -417,7 +417,7 @@ class PgsqlSchema extends Schema */ function filterDef(array $tableDef) { - foreach (array_keys($tableDef['fields']) as $name => &$col) { + foreach ($tableDef['fields'] as $name => &$col) { // No convenient support for field descriptions unset($col['description']); -- 2.39.5