From bc41f818ec8914f51243e4dd1a6de71e83c77218 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Wed, 20 May 2015 17:19:57 +0100
Subject: [PATCH] Issue #2483617 by vasi, phenaproxima: The d6_file migration
 forgot to mention the uid column

---
 .../migrate_drupal/config/install/migrate.migration.d6_file.yml  | 1 +
 core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/core/modules/migrate_drupal/config/install/migrate.migration.d6_file.yml b/core/modules/migrate_drupal/config/install/migrate.migration.d6_file.yml
index 419680cdee1e..a528e6aae79a 100644
--- a/core/modules/migrate_drupal/config/install/migrate.migration.d6_file.yml
+++ b/core/modules/migrate_drupal/config/install/migrate.migration.d6_file.yml
@@ -20,5 +20,6 @@ process:
   filesize: filesize
   status: status
   changed: timestamp
+  uid: uid
 destination:
   plugin: entity:file
diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php
index f0eedc285fad..68969f13115c 100644
--- a/core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php
+++ b/core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php
@@ -68,6 +68,7 @@ public function testFiles() {
     $this->assertIdentical('39325', $file->getSize());
     $this->assertIdentical('public://image-1.png', $file->getFileUri());
     $this->assertIdentical('image/png', $file->getMimeType());
+    $this->assertIdentical("1", $file->getOwnerId());
     // It is pointless to run the second half from MigrateDrupal6Test.
     if (empty($this->standalone)) {
       return;
-- 
GitLab