Stock quantity history - cleanup?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 anos atrás
Is there anything to turn on to delete Stock quantity history that is older than xx days?
7 anos atrás
No, it'll require some customization. Or you can simply run the following SQL command over your database
DELETE FROM [StockQuantityHistory]
WHERE CreatedOnUtc > 'put_your_date_here'
GO
7 anos atrás
Thanks A.M. I was figuring I could run a DB script, but wasn't sure.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.