? linode.install.patch
Index: linode.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/linode/linode.install,v
retrieving revision 1.1
diff -u -r1.1 linode.install
--- linode.install	5 Sep 2009 04:00:24 -0000	1.1
+++ linode.install	1 Oct 2009 12:46:51 -0000
@@ -1,5 +1,22 @@
 <?php
 
+/**
+ * Implementation of hook_install().
+ */
+function linode_install() {
+  drupal_install_schema('linode');
+}
+
+/**
+ * Implementation of hook_uninstall().
+ */
+function linode_uninstall() {
+  drupal_uninstall_schema('linode');
+}
+
+/**
+ * Implementation of hook_schema().
+ */
 function linode_schema() {
   $schema = array();
   $schema['cache_linode'] = array(
@@ -72,7 +89,7 @@
     ),
     'primary key' => array('id'),
     'indexes' => array(
-      'key' => array('api_key'),
+      'api_key' => array('api_key'),
     ),
   );
 
