The Ruby on Rails convention for database table and field names is snake_case and not CamelCase. However, I have an existing database being used by a PHP application. I woul
for the datbases tables name you could use set_table_name
class Dog < ActiveRecord::Base set_table_name 'dog' end
for the field you could override your accessor . hope be usefull . bye