File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
app/code/Magento/Catalog/Setup/Patch/Data Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,10 @@ public function getAliases()
59
59
public function apply ()
60
60
{
61
61
$ this ->dataSetup ->startSetup ();
62
+ $ setup = $ this ->dataSetup ;
63
+ $ connection = $ setup ->getConnection ();
62
64
63
- $ connection = $ this ->dataSetup ->getConnection ();
64
- $ attributeTable = $ connection ->getTableName ('eav_attribute ' );
65
+ $ attributeTable = $ setup ->getTable ('eav_attribute ' );
65
66
/** @var EavSetup $eavSetup */
66
67
$ eavSetup = $ this ->eavSetupFactory ->create (['setup ' => $ this ->dataSetup ]);
67
68
$ entityTypeId = $ eavSetup ->getEntityTypeId (Product::ENTITY );
@@ -74,8 +75,8 @@ public function apply()
74
75
->where ('frontend_input = ? ' , 'multiselect ' )
75
76
);
76
77
77
- $ varcharTable = $ connection -> getTableName ('catalog_product_entity_varchar ' );
78
- $ textTable = $ connection -> getTableName ('catalog_product_entity_text ' );
78
+ $ varcharTable = $ setup -> getTable ('catalog_product_entity_varchar ' );
79
+ $ textTable = $ setup -> getTable ('catalog_product_entity_text ' );
79
80
$ varcharTableDataSql = $ connection
80
81
->select ()
81
82
->from ($ varcharTable )
You can’t perform that action at this time.
0 commit comments