Is it possible in Rails to add an association to an existing record without immediately committing this change to the database? E.g. if I have Post has_many :ta
post_tag = post.post_tags.find_or_initialize_by_tag_id(Tag.first.id) post_tag.save