diff --git a/og_vocab.install b/og_vocab.install
index 11c7884..94747b8 100644
--- a/og_vocab.install
+++ b/og_vocab.install
@@ -239,3 +239,14 @@ function og_vocab_update_7100(&$sandbox) {
   );
   db_add_field('og_vocab', 'field_name', $spec);
 }
+
+
+/**
+ * Fill in field name for OG vocabularies without a field name.
+ */
+function og_vocab_update_7101() {
+  db_update('og_vocab')
+    ->fields(array('field_name' => OG_VOCAB_FIELD))
+    ->condition('field_name', '', '=')
+    ->execute();
+}
