You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Take any model with acts_as_taggable_on in it, like a User
> user = User.first
> user.save
> ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 1], ["taggable_type", "User"]]
Is there a way to prevent this? I checked the gem-code and found 2 after_save-Callbacks, but when i triggered those by hand, the sql-query was different.
The text was updated successfully, but these errors were encountered:
Take any model with
acts_as_taggable_on
in it, like aUser
Is there a way to prevent this? I checked the gem-code and found 2
after_save
-Callbacks, but when i triggered those by hand, the sql-query was different.The text was updated successfully, but these errors were encountered: