]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
quick syntax fix
authorBrion Vibber <brion@pobox.com>
Mon, 11 Oct 2010 20:05:44 +0000 (13:05 -0700)
committerBrion Vibber <brion@pobox.com>
Mon, 11 Oct 2010 20:05:44 +0000 (13:05 -0700)
lib/pgsqlschema.php

index f09f41d51a22a584db1651af89e4e6abc27c3bbf..27f004cea6206ad9b17f06990ff6940f27a561ae 100644 (file)
@@ -303,19 +303,19 @@ class PgsqlSchema extends Schema
         $oldType = $this->mapType($old);
         $newType = $this->mapType($cd);
         if ($oldType != $newType) {
-            $phrase[] .= $prefix . 'TYPE ' . $newType;
+            $phrase[] = $prefix . 'TYPE ' . $newType;
         }
 
         if (!empty($old['not null']) && empty($cd['not null'])) {
-            $phrase[] .= $prefix . 'DROP NOT NULL';
+            $phrase[] = $prefix . 'DROP NOT NULL';
         } else if (empty($old['not null']) && !empty($cd['not null'])) {
-            $phrase[] .= $prefix . 'SET NOT NULL';
+            $phrase[] = $prefix . 'SET NOT NULL';
         }
 
         if (isset($old['default']) && !isset($cd['default'])) {
-            $phrase[] . $prefix . 'DROP DEFAULT';
+            $phrase[] = $prefix . 'DROP DEFAULT';
         } else if (!isset($old['default']) && isset($cd['default'])) {
-            $phrase[] . $prefix . 'SET DEFAULT ' . $this->quoteDefaultValue($cd);
+            $phrase[] = $prefix . 'SET DEFAULT ' . $this->quoteDefaultValue($cd);
         }
     }