aboutsummaryrefslogtreecommitdiffstats
path: root/test/fixtures/widget.rb
blob: 086ac2b40de01127e3158dc91d65cb41e65bb083 (plain)
1
2
3
4
5
6
class Widget < ActiveRecord::Base
  acts_as_versioned :sequence_name => 'widgets_seq', :association_options => {
    :dependent => :nullify, :order => 'version desc'
  }
  non_versioned_columns << 'foo'
end