? 952056.patch
Index: sweaver.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/sweaver/sweaver.install,v
retrieving revision 1.1.2.29
diff -u -p -r1.1.2.29 sweaver.install
--- sweaver.install	25 Oct 2010 13:52:50 -0000	1.1.2.29
+++ sweaver.install	25 Oct 2010 13:54:43 -0000
@@ -479,3 +479,13 @@ function sweaver_schema() {
 
   return $schema;
 }
+
+/**
+ * Implementation of hook_update_N().
+ */
+function sweaver_update_6001() {
+  $ret = array();
+  db_add_field($ret, 'sweaver_style', 'palette', array('type' => 'varchar', 'not null' => TRUE, 'length' => 64, 'default' => ''));
+  db_add_field($ret, 'sweaver_style_draft', 'palette', array('type' => 'varchar', 'not null' => TRUE, 'length' => 64, 'default' => ''));
+  return $ret;
+}
