You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Talk
I have a situation where I want to duplicate an ActiveRecord including
duplication of has_many relationships.
I've seen a few plugins but it seems unclear if they will work on
Rails3. So I was wondering if anyone has a good suggestion for a
plugin they are currently using to do this?
Basically I'm doing this because I have an object that I want to allow
my users to edit. I want to keep a history of the object though. So
I am thinking of duplicating the object and assigning it it's own id.
The duplicated object will essentially be the 'history' so that the
user could go back and see different versions. In order to do this I
need to create duplicate copies of all the underlying has_many
relationships (which may change)
Ylan
unread,
Jun 17, 2011, 3:04:41 PM6/17/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
pipplo,
Take a look at acts_as_audited. It is very simple to use and keeps a complete history of the ActiveRecord models you want to keep track of.