I have two models, Posts and Tags. Posts HasAndBelongsToMany Tags.
Let's say a Post 1 has the tags world, news, and paper.
Now in the joining table, I want to remove the association between the Tag "paper" and Post 1, but the Tag "paper" should not be deleted from the tags table. Only the association in the joining table should be deleted.
How do I do this in CakePHP?