You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additionally, it seems that the dateDeleted column is being populated, even if the OrderStatus has not been deleted. Because the dateDeleted is populated erroneously, I don't see any way to determine which OrderStatus records are valid.
[yii\db\Exception] SQLSTATE[42S22]: Column not found: 1054 Unknown column 'isArchived' in 'where clause'
The SQL being executed was: SELECT `id`, `uid`, `name`, `handle`, `color`, `sortOrder`, `default`
FROM `commerce_orderstatuses`
WHERE `isArchived`=FALSE
ORDER BY `sortOrder`
Description
The src/helpers/ProjectConfigData.php class erroneously adds the 'isArchived' column in a where clause for OrderStatus.
The
isArchived
column was removed in migrationm191007_184911_orderStatus_from_archived_to_deleted
:Additionally, it seems that the
dateDeleted
column is being populated, even if the OrderStatus has not been deleted. Because thedateDeleted
is populated erroneously, I don't see any way to determine which OrderStatus records are valid.Steps to reproduce
Additional info
The text was updated successfully, but these errors were encountered: