diff --git a/l10n_update.install b/l10n_update.install
index 8f5eae0..dd91bfa 100644
--- a/l10n_update.install
+++ b/l10n_update.install
@@ -250,3 +250,16 @@ function l10n_update_update_6002() {
   }
   return t('Resolved possible l10n_status field conflict in locales_target.');
 }
+
+/**
+ * Rename filepath to uri in {l10n_update_file} table.
+ */
+function l10n_update_update_7001() {
+  db_change_field('l10n_update_file', 'filepath', 'uri', array(
+    'description' => 'File system path for importing the file.',
+    'type' => 'varchar',
+    'length' => 255,
+    'not null' => TRUE,
+    'default' => '',
+  ));
+}
\ No newline at end of file
