diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-03-10 22:03:36 +1300 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-03-10 22:03:36 +1300 |
commit | 49f1b1e8b290de22381a0e25b2b612bd6ddaf79d (patch) | |
tree | 79fd1d95874ea2a3bc32c699df3744f69d980ff2 | |
parent | 75e2be3b71cc5b6114a10e1b5f1e0c9e3074af19 (diff) |
removed a stay bit of debug
-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 86ffbeb2a..afb498f4a 100644 --- a/lib/pgsqlschema.php +++ b/lib/pgsqlschema.php @@ -502,7 +502,7 @@ class PgsqlSchema extends Schema { $sql = "{$cd->name} "; $type = $this->_columnTypeTranslation($cd->type); -var_dump($type); + if (!empty($cd->size)) { $sql .= "{$type}({$cd->size}) "; } else { |