You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

custom_value_exemplar.rb 174B

1234567
  1. class CustomValue < ActiveRecord::Base
  2. generator_for :custom_field, :method => :generate_custom_field
  3. def self.generate_custom_field
  4. CustomField.generate!
  5. end
  6. end