[Prestashop] reset all points and start from scratch with all users


  • Default avatar
    riga75    
     2 years ago
    0

    I have to reset all the points they have accumulated and start from scratch, what can I do?
    thanks a lot

    stefano

  • Your avatar
    seyi    
     2 years ago
    +1

    There is no reset button for points, so to do this you would have to update the database.

    If you just want to mark all points as paid you could run the query:
    UPDATE #__aworewards SET points_paid=points WHERE credit_type='points';

    Or to just delete all points
    DELETE FROM #__aworewards WHERE credit_type='points';