-
-
Save auxesis/6265388 to your computer and use it in GitHub Desktop.
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.strip, :mysql => <<-MYSQL.strip} | |
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