search for: employeecontact

Displaying 1 result from an estimated 1 matches for "employeecontact".

2006 Jan 10
0
Validation and Single-Table Inheritance
I''m seeing an inconsistent application of validation in a single-table inheritance situation, and wanted to see if anyone else has seen this. I have the following: class Contact < ActiveRecord validates_presence_of :first_name ... end class EmployeeContact < Contact ... end If I do the following while running the server or in test mode, no error occurs eventhough the first name is invalid: @employee_contact.update_attributes({:first_name => ""''}) When I do the same in script/console, #update_attributes returns false (an e...