Home › Forums › Newsletter Plugin Support › Optimize DB
If there any way to optimise newsletter_sent table or delete old statistics that more tan 2 years old?
You can use the timestamp in the table and run a delete query conditioned on that columns. The timestamp is the unix time, so your condition could me
field < unix_timestamp()-2*365*24*3600 Stefano.