diff --git modules/system.views.inc modules/system.views.inc
index 1ae4cd5..5636b5d 100644
--- modules/system.views.inc
+++ modules/system.views.inc
@@ -169,6 +169,18 @@ function system_views_data() {
     ),
   );
 
+  // uid field
+  $data['files']['uid'] = array(
+    'title' => t('User'),
+    'help' => t('The user, who uploaded the file.'),
+    'relationship' => array(
+      'base' => 'users',
+      'base field' => 'uid',
+      'handler' => 'views_handler_relationship',
+      'label' => t('User'),
+    ),
+  );
+
 
   return $data;
 }
