Skip to content

Instantly share code, notes, and snippets.

@m-vdb
Created October 26, 2015 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m-vdb/699890359b2567d71a6c to your computer and use it in GitHub Desktop.
Save m-vdb/699890359b2567d71a6c to your computer and use it in GitHub Desktop.
Rename job:apply:success events to job:apply:tentative
BEGIN;
LOCK events;
UPDATE events SET type = 'job:apply:tentative' WHERE type = 'job:apply:success' and date >= '2015-09-01';
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment