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()
5959 public function apply ()
6060 {
6161 $ this ->dataSetup ->startSetup ();
62+ $ setup = $ this ->dataSetup ;
63+ $ connection = $ setup ->getConnection ();
6264
63- $ connection = $ this ->dataSetup ->getConnection ();
64- $ attributeTable = $ connection ->getTableName ('eav_attribute ' );
65+ $ attributeTable = $ setup ->getTable ('eav_attribute ' );
6566 /** @var EavSetup $eavSetup */
6667 $ eavSetup = $ this ->eavSetupFactory ->create (['setup ' => $ this ->dataSetup ]);
6768 $ entityTypeId = $ eavSetup ->getEntityTypeId (Product::ENTITY );
@@ -74,8 +75,8 @@ public function apply()
7475 ->where ('frontend_input = ? ' , 'multiselect ' )
7576 );
7677
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 ' );
7980 $ varcharTableDataSql = $ connection
8081 ->select ()
8182 ->from ($ varcharTable )
You can’t perform that action at this time.
0 commit comments