summaryrefslogtreecommitdiffstats
path: root/test/exemplars/custom_value_exemplar.rb
blob: aeb5412e15e3a54c8bb3f3736bbbd8051d92b48b (plain)
1
2
3
4
5
6
7
class CustomValue < ActiveRecord::Base
  generator_for :custom_field, :method => :generate_custom_field

  def self.generate_custom_field
    CustomField.generate!
  end
end