? storm--899970-4.patch
Index: stormknowledgebase/stormknowledgebase.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/storm/stormknowledgebase/stormknowledgebase.install,v
retrieving revision 1.1.4.4
diff -u -p -r1.1.4.4 stormknowledgebase.install
--- stormknowledgebase/stormknowledgebase.install	23 Nov 2009 20:35:46 -0000	1.1.4.4
+++ stormknowledgebase/stormknowledgebase.install	15 Sep 2010 21:27:49 -0000
@@ -23,7 +23,7 @@ function stormknowledgebase_schema() {
     'fields' => array(
       'vid' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
       'nid' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
-      'topic' => array('type' => 'varchar', 'length' => 20),
+      'topic' => array('type' => 'varchar', 'length' => 100),
     ),
     'primary key' => array('vid', 'nid'),
   );
@@ -37,3 +37,16 @@ function stormknowledgebase_update_1() {
   $ret = array();
   return $ret;
 }
+
+/*
+ * @function
+ * Database update for issue #899970
+ */
+function stormknowledgebase_update_6102() {
+  $ret = array();
+
+  db_change_field($ret, 'stormknowledgebase', 'topic', 'topic', array('type' => 'varchar', 'length' => 100));
+
+  return $ret;
+}
+
Index: stormorganization/stormorganization.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/storm/stormorganization/stormorganization.install,v
retrieving revision 1.4.4.7
diff -u -p -r1.4.4.7 stormorganization.install
--- stormorganization/stormorganization.install	5 Jan 2010 16:04:53 -0000	1.4.4.7
+++ stormorganization/stormorganization.install	15 Sep 2010 21:27:49 -0000
@@ -26,7 +26,7 @@ function stormorganization_schema() {
       'prefix'      => array('type' => 'varchar', 'length' => 100),
       'fullname'    => array('type' => 'varchar', 'length' => 100),
       'country'     => array('type' => 'varchar', 'length' => 100),
-      'orglanguage' => array('type' => 'varchar', 'length' => 20),
+      'orglanguage' => array('type' => 'varchar', 'length' => 100),
       'provstate'   => array('type' => 'varchar', 'length' => 50),
       'city'        => array('type' => 'varchar', 'length' => 100),
       'zip'         => array('type' => 'varchar', 'length' => 10),
@@ -35,7 +35,7 @@ function stormorganization_schema() {
       'email'       => array('type' => 'varchar', 'length' => 50),
       'www'         => array('type' => 'varchar', 'length' => 100),
       'phone'       => array('type' => 'varchar', 'length' => 100),
-      'currency'    => array('type' => 'varchar', 'length' => 20),
+      'currency'    => array('type' => 'varchar', 'length' => 100),
       'iscustomer'  => array('type' => 'int', 'default' => 1),
       'isprovider'  => array('type' => 'int', 'default' => 0),
       'isactive'    => array('type' => 'int', 'default' => 1),
@@ -74,3 +74,18 @@ function stormorganization_update_6104()
   db_add_field($ret, 'stormorganization', 'price', array('type' => 'float'));
   return $ret;
 }
+
+/*
+ * @function
+ * Database update for issue #899970
+ */
+function stormorganization_update_6105() {
+  $ret = array();
+
+  db_change_field($ret, 'stormorganization', 'orglanguage', 'orglanguage', array('type' => 'varchar', 'length' => 100));
+  db_change_field($ret, 'stormorganization', 'currency', 'currency', array('type' => 'varchar', 'length' => 100));
+  db_change_field($ret, 'stormorganization', 'pricemode', 'pricemode', array('type' => 'varchar', 'length' => 100));
+
+  return $ret;
+}
+
