To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / acts_as_versioned / test / fixtures / widget.rb @ 442:753f1380d6bc

History | View | Annotate | Download (206 Bytes)

1
class Widget < ActiveRecord::Base
2
  acts_as_versioned :sequence_name => 'widgets_seq', :association_options => {
3
    :dependent => :nullify, :order => 'version desc'
4
  }
5
  non_versioned_columns << 'foo'
6
end