1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00

Add comment on association delete.

This commit is contained in:
Andy Stewart 2010-09-03 10:06:41 +01:00
parent f65cd0f722
commit 636945b718

View file

@ -249,6 +249,8 @@ But none of these will:
>> @book.author_ids = [@solzhenistyn.id, @dostoyevsky.id] >> @book.author_ids = [@solzhenistyn.id, @dostoyevsky.id]
>> @book.authors = [] >> @book.authors = []
Having said that, you can get the first one (`@book.authors.delete @tolstoy`) working with this [monkey patch](http://stackoverflow.com/questions/2381033/how-to-create-a-full-audit-log-in-rails-for-every-table/2381411#2381411). Many thanks to Danny Trelogan for pointing it out.
There may be a way to store authorship versions, probably using association callbacks, no matter how the collection is manipulated but I haven't found it yet. Let me know if you do. There may be a way to store authorship versions, probably using association callbacks, no matter how the collection is manipulated but I haven't found it yet. Let me know if you do.