diff --git a/enabled_modules.install b/enabled_modules.install
index 90ac273..027fd04 100644
--- a/enabled_modules.install
+++ b/enabled_modules.install
@@ -134,10 +134,10 @@ function enabled_modules_update_6101() {
         ),
         'description' => array(
           'description' => 'A description of the module',
-          'type' => 'varchar',
+          'type' => 'text',
           'size' => 'normal',
           'default' => '',
-          'length' => '256',
+          'length' => '1000',
         ),
         'package' => array(
           'description' => 'The package for the modules page',
@@ -241,3 +241,21 @@ function enabled_modules_update_6103() {
   return $ret;
 }
 
+/**
+ * @function
+ * Increases the size of the description field
+ */
+function enabled_modules_update_7101() {
+  $ret = array();
+  
+  db_change_field($ret, 'enabled_modules_system', 'description', 'description', array(
+    'description' => 'The name of the module',
+    'type' => 'text',
+    'size' => 'normal',
+    'default' => '',
+    'length' => '1000',
+  ));
+  
+  return $ret;
+}
+
