OSDN Git Service

Move database.yml to template
[redminele/redminele.git] / redmine / vendor / plugins / acts_as_versioned / test / fixtures / widget.rb
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