diff --git flickr_imagefield.install flickr_imagefield.install
index b968447..81fdfcc 100644
--- flickr_imagefield.install
+++ flickr_imagefield.install
@@ -7,6 +7,18 @@
 function flickr_imagefield_install() {
   drupal_load('module', 'content');
   content_notify('install', 'flickr_imagefield');
+	/**
+	 * Add a column to the files table that will record the location of any file
+	 * that has been uploaded to Flickr.
+	 */
+	$ret = array();
+  $spec = array(
+    'type' => 'varchar',
+    'length' => 75, // urls were not larger than 66 characters in my testing
+    'not null' => TRUE,
+    'default' => '',
+  );
+  db_add_field($ret, 'files', 'flickr_imagefield_location', $spec);
 }
 
 function flickr_imagefield_uninstall() {
@@ -24,20 +36,4 @@ function flickr_imagefield_enable() {
 function flickr_imagefield_disable() {
   drupal_load('module', 'content');
   content_notify('disable', 'flickr_imagefield');
-}
-
-/**
- * Add a column to the files table that will record the location of any file
- * that has been uploaded to Flickr.
- */
-function flickr_imagefield_update_6000() {
-  $ret = array();
-  $spec = array(
-    'type' => 'varchar',
-    'length' => 75, // urls were not larger than 66 characters in my testing
-    'not null' => TRUE,
-    'default' => '',
-  );
-  db_add_field($ret, 'files', 'flickr_imagefield_location', $spec);
-  return $ret;
 }
\ No newline at end of file
