Store each models version in a separate table Show archive.org snapshot
class Post < ActiveRecord::Base
has_paper_trail :class_name => 'PostVersion'
end
class PostVersion < Version
# custom behaviour, e.g:
set_table_name :post_versions
end
Posted by Martin Straub to makandra dev (2014-03-11 08:12)