Fix for PG filtering

This commit is contained in:
Brion Vibber 2010-10-13 16:21:24 -07:00
parent c0bb3062f6
commit 0de3661d57
1 changed files with 1 additions and 1 deletions

View File

@ -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']);