I have a model that looks like this:
class Car < ActiveRecord::Base
validates :name,:presence =>true
end
Can I configure it so that the machine name is not required when preparing the create operation, but is it necessary when performing the "change" action?
source
share