diff --git a/views.install b/views.install
index 64e2de7..df03615 100644
--- a/views.install
+++ b/views.install
@@ -593,3 +593,23 @@ function views_update_7001() {
     menu_rebuild();
   }
 }
+
+function views_schema_7300() {
+  return views_update_6013();
+}
+/**
+ * Take sure the human_name field is added to the views_view table.
+ *
+ * If you updated from 6.x-2.x-dev to 7.x-3.x you had already schema
+ * version 6014, so the update 6013 isn't runned, and never was.
+ * As a result the human_name field is missing in the database.
+ *
+ * Add the human_name field if it doesn't exist before.
+ */
+function views_update_7300() {
+  $ret = array();
+  if (!db_column_exists('views_view', 'human_name')) {
+    $ret += views_update_6013();
+  }
+  return $ret;
+}
