diff --git a/uuid.install b/uuid.install
index 688dac0..863f32c 100644
--- a/uuid.install
+++ b/uuid.install
@@ -29,6 +29,14 @@ function uuid_schema_alter(&$schema = array()) {
  * Implements hook_install().
  */
 function uuid_install() {
+  _uuid_install_uuid_fields();
+  uuid_sync_all();
+}
+
+/**
+ * Install the 'uuid' and 'vuuid' fields into Drupal core entity tables where needed.
+ */
+function _uuid_install_uuid_fields() {
   $field = uuid_schema_field_definition();
   foreach (uuid_get_core_entity_info() as $entity_type => $info) {
     if (!db_field_exists($info['base table'], $info['entity keys']['uuid'])) {
@@ -42,7 +50,6 @@ function uuid_install() {
       }
     }
   }
-  uuid_sync_all();
 }
 
 /**
@@ -183,3 +190,10 @@ function uuid_update_7100() {
 function uuid_update_7101() {
   drupal_flush_all_caches();
 }
+
+/**
+ * Insure that the uuid and vuuid fields are added where needed.
+ */
+function uuid_update_7102() {
+  _uuid_install_uuid_fields();
+}
