Guest User

Untitled

a guest
Nov 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CREATE DEFINER = `root`@`localhost` EVENT `ut_clear_cart`
  2. ON SCHEDULE EVERY
  3. 1 MINUTE STARTS '2018-11-20 00:00:00'
  4. ON COMPLETION NOT PRESERVE ENABLE
  5. DO
  6. DELETE
  7. FROM
  8. ut_cart_storage
  9. WHERE
  10. updated_at >= NOW() - INTERVAL 10 MINUTE
Add Comment
Please, Sign In to add comment