diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-05-15 15:32:22 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-05-15 15:32:22 +1200 |
commit | 7bd6b62461551f26fa5571b72b260d4e92c9bfd5 (patch) | |
tree | 86aac0ca1f4e9cb4134b47efc0271542decbcf20 | |
parent | a467c0ebbab22a220972e458de0652e523bc12d7 (diff) |
comment out the extra bit, cos there's always mysql-only stuff in therre.
this isn't a very good idea
-rw-r--r-- | lib/pgsqlschema.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pgsqlschema.php b/lib/pgsqlschema.php index 16639ff1b..583d01e0a 100644 --- a/lib/pgsqlschema.php +++ b/lib/pgsqlschema.php @@ -520,9 +520,9 @@ class PgsqlSchema extends Schema $sql .= ($cd->nullable) ? "null " : "not null "; } - if (!empty($cd->extra)) { - $sql .= "{$cd->extra} "; - } +// if (!empty($cd->extra)) { +// $sql .= "{$cd->extra} "; +// } return $sql; } |