From cc927672feecc91c15b13f56c762349c36b072ee Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Sun, 10 Apr 2011 23:45:41 +0200
Subject: [PATCH] - Patch #935258 by Stevel, Josh Waihi: defaults not changed
 in changeField on postgresql.

---
 includes/database/pgsql/schema.inc | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc
index 01e7c7c258fc..9ed8a2620327 100644
--- a/includes/database/pgsql/schema.inc
+++ b/includes/database/pgsql/schema.inc
@@ -527,6 +527,9 @@ public function changeField($table, $field, $field_new, $spec, $new_keys = array
       $this->connection->query('ALTER TABLE {' . $table . '} DROP CONSTRAINT "' . $check . '"');
     }
 
+    // Remove old default.
+    $this->fieldSetNoDefault($table, $field);
+
     $this->connection->query('ALTER TABLE {' . $table . '} ALTER "' . $field . '" TYPE ' . $typecast . ' USING "' . $field . '"::' . $typecast);
 
     if (isset($spec['not null'])) {
@@ -561,6 +564,11 @@ public function changeField($table, $field, $field_new, $spec, $new_keys = array
       $this->connection->query('ALTER TABLE {' . $table . '} ADD CHECK ("' . $field_new . '" >= 0)');
     }
 
+    // Add default if necessary.
+    if (isset($spec['default'])) {
+      $this->fieldSetDefault($table, $field_new, $spec['default']);
+    }
+
     // Change description if necessary.
     if (!empty($spec['description'])) {
       $this->connection->query('COMMENT ON COLUMN {' . $table . '}."' . $field_new . '" IS ' . $this->prepareComment($spec['description']));
-- 
GitLab