diff --git a/modules/ubercart/migrations/uc_profile_type.yml b/modules/ubercart/migrations/uc_profile_type.yml index f3f1e75..70c1e1b 100644 --- a/modules/ubercart/migrations/uc_profile_type.yml +++ b/modules/ubercart/migrations/uc_profile_type.yml @@ -1,7 +1,7 @@ -# Creates revisionable 'customer' profile type. The customer profile type is -# created when commerce_order is installed and will be overwritten by this -# migration. Additional profile types can be created by adding extra rows to the -# source field 'data_rows'. +# Creates 'customer' profile type. The customer profile type is created when +# commerce_order is installed and will be overwritten by this migration. +# Additional profile types can be created by adding extra rows to the source +# field 'data_rows'. id: uc_profile_type label: Migrate profile types migration_tags: @@ -16,9 +16,6 @@ source: - id: customer label: Customer - multiple: true - allow_revisions: true - new_revision: true ids: id: type: string @@ -26,9 +23,6 @@ source: process: id: id label: label - multiple: multiple - allow_revisions: allow_revisions - new_revision: new_revision destination: plugin: entity:profile_type destination_module: profile diff --git a/modules/ubercart/tests/src/Kernel/Migrate/uc6/ProfileTypeCustomerTest.php b/modules/ubercart/tests/src/Kernel/Migrate/uc6/ProfileTypeCustomerTest.php index 700f812..b3d28e1 100644 --- a/modules/ubercart/tests/src/Kernel/Migrate/uc6/ProfileTypeCustomerTest.php +++ b/modules/ubercart/tests/src/Kernel/Migrate/uc6/ProfileTypeCustomerTest.php @@ -32,7 +32,7 @@ class ProfileTypeCustomerTest extends Ubercart6TestBase { * Test profile migration. */ public function testProfileType() { - $this->assertProfileType('customer', 'Customer', TRUE, TRUE); + $this->assertProfileType('customer', 'Customer', FALSE, FALSE); } } diff --git a/modules/ubercart/tests/src/Kernel/Migrate/uc7/ProfileTypeCustomerTest.php b/modules/ubercart/tests/src/Kernel/Migrate/uc7/ProfileTypeCustomerTest.php index 1e89286..21afe3b 100644 --- a/modules/ubercart/tests/src/Kernel/Migrate/uc7/ProfileTypeCustomerTest.php +++ b/modules/ubercart/tests/src/Kernel/Migrate/uc7/ProfileTypeCustomerTest.php @@ -32,7 +32,7 @@ class ProfileTypeCustomerTest extends Ubercart7TestBase { * Test profile migration. */ public function testProfileType() { - $this->assertProfileType('customer', 'Customer', TRUE, TRUE); + $this->assertProfileType('customer', 'Customer', FALSE, FALSE); } }