Created
August 19, 2013 02:43
-
-
Save skorfmann/6265380 to your computer and use it in GitHub Desktop.
seen here: https://github.com/jenseng/hair_trigger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:default => <<-DEFAULT_SQL, :mysql => <<-MYSQL} | |
UPDATE users SET item_count = item_count + 1 | |
WHERE id IN (SELECT user_id FROM buckets WHERE id = NEW.bucket_id) | |
DEFAULT_SQL | |
UPDATE users, buckets SET item_count = item_count + 1 | |
WHERE users.id = user_id AND buckets.id = NEW.bucket_id | |
MYSQL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment