File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,9 @@ public function isDisplayed()
9494 $ name = $ singleColumnDescription ['COLUMN_NAME ' ];
9595 foreach ($ singleColumnDescription as $ key => $ value )
9696 {
97- if ($ tableDescription [$ name ][$ key ] !== $ value )
97+ if (isset ($ tableDescription [$ name ]) === false or
98+ isset ($ tableDescription [$ name ][$ key ]) === false or
99+ $ tableDescription [$ name ][$ key ] !== $ value )
98100 {
99101 return true ;
100102 }
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public function upgrade(
7575 }
7676 }
7777
78- $ tableName = $ setup ->getTable (' sales_order ' );
78+ $ tableName = $ setup ->getTable (OrderLink:: TABLE_NAME );
7979 if ($ setup ->getConnection ()->isTableExists ($ tableName ) == true )
8080 {
8181 $ setup ->getConnection ()->addColumn (
You can’t perform that action at this time.
0 commit comments