--- mail_edit/mail_edit.install	2008-07-06 19:02:15.000000000 -0400
+++ mail_edit.install	2008-07-10 12:31:29.000000000 -0400
@@ -51,6 +51,36 @@ function mail_edit_schema() {
       '`language`'       => array('`language`'),
     ),
   );
+ $schema['mail_edit_registry'] = array(
+    'description' => t(''),
+    'fields' => array(
+      'id' => array(
+        'type' => 'varchar',
+        'length' => '255',
+        'not null' => TRUE,
+        'description' => t(''),
+      ),
+      'module' => array(
+        'type' => 'varchar',
+        'length' => '255',
+        'not null' => TRUE,
+        'description' => t(''),
+      ),
+      'mailkey' => array(
+        'type' => 'varchar',
+        'length' => '255',
+        'not null' => TRUE,
+        'description' => t(''),
+      ),
+      'description' => array(
+        'type' => 'varchar',
+        'length' => '255',
+        'not null' => TRUE,
+        'description' => t(''),
+      ),      
+    ),
+    'primary key' => array('id'),
+  );  
   
   return $schema;
 }
\ No newline at end of file
