diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-13 16:21:24 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-13 16:21:24 -0700 |
commit | 0de3661d57c3e41212df1e95b76ddde596647a83 (patch) | |
tree | b7cc5da4c6e5ee39cd679abbd41bdcbedcf6b87c | |
parent | c0bb3062f63638601a9855df93cdaef963ef628e (diff) |
Fix for PG filtering
-rw-r--r-- | lib/pgsqlschema.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php index e8711a6f8..4fde80b55 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']); |