Skip to content

Commit 707e757

Browse files
committed
MAGETWO-41562: Stabilization and pull request
1 parent 74a04b0 commit 707e757

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/code/Magento/Customer/Setup/UpgradeData.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ public function __construct(
5555
*/
5656
public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
5757
{
58+
$setup->startSetup();
59+
5860
if (version_compare($context->getVersion(), '2.0.1', '<')) {
5961
/** @var CustomerSetup $customerSetup */
6062
$customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);
6163

62-
$setup->startSetup();
63-
6464
$entityAttributes = [
6565
'customer' => [
6666
'website_id' => [

app/code/Magento/Customer/Setup/UpgradeSchema.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function upgrade(SchemaSetupInterface $setup, ModuleContextInterface $con
3232
);
3333
}
3434

35-
if (version_compare($context->getVersion(), '2.0.0.2', '<')) {
35+
if (version_compare($context->getVersion(), '2.0.1', '<')) {
3636
$setup->getConnection()->addColumn(
3737
$setup->getTable('customer_eav_attribute'),
3838
'is_used_in_grid',

app/code/Magento/Customer/etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
9-
<module name="Magento_Customer" setup_version="2.0.0.2">
9+
<module name="Magento_Customer" setup_version="2.0.1">
1010
<sequence>
1111
<module name="Magento_Eav"/>
1212
<module name="Magento_Directory"/>

0 commit comments

Comments
 (0)