]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
map the mysql-ish column types to ones postgres likes
authorBrenda Wallace <shiny@cpan.org>
Wed, 10 Mar 2010 09:02:56 +0000 (22:02 +1300)
committerBrenda Wallace <shiny@cpan.org>
Wed, 10 Mar 2010 09:02:56 +0000 (22:02 +1300)
lib/pgsqlschema.php

index 825241902319db150a79c57363c821e698a3ab03..86ffbeb2a79be48c4cd05a34299de43e350b556d 100644 (file)
@@ -216,6 +216,22 @@ class PgsqlSchema extends Schema
         return true;
     }
 
+    /**
+     * Translate the (mostly) mysql-ish column types into somethings more standard
+     * @param string column type
+     *
+     * @return string postgres happy column type
+     */
+    private function _columnTypeTranslation($type) {
+      $map = array(
+      'datetime' => 'timestamp'
+      );
+      if(!empty($map[$type])) {
+        return $map[$type];
+      }
+      return $type;
+    }
+
     /**
      * Adds an index to a table.
      *
@@ -485,11 +501,12 @@ class PgsqlSchema extends Schema
     private function _columnSql($cd)
     {
         $sql = "{$cd->name} ";
-
+        $type = $this->_columnTypeTranslation($cd->type);
+var_dump($type);
         if (!empty($cd->size)) {
-            $sql .= "{$cd->type}({$cd->size}) ";
+            $sql .= "{$type}({$cd->size}) ";
         } else {
-            $sql .= "{$cd->type} ";
+            $sql .= "{$type} ";
         }
 
         if (!empty($cd->default)) {