summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrenda Wallace <shiny@cpan.org>2010-05-15 15:32:22 +1200
committerBrenda Wallace <shiny@cpan.org>2010-05-15 15:32:22 +1200
commit7bd6b62461551f26fa5571b72b260d4e92c9bfd5 (patch)
tree86aac0ca1f4e9cb4134b47efc0271542decbcf20
parenta467c0ebbab22a220972e458de0652e523bc12d7 (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.php6
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;
}