Here is my class, as you can see, no attr_accessor
class LegacyBlogPost < ActiveRecord::Base
establish_connection Rails.configuration.database_configuration['blogs']
self.table_name = 'blogpost'
self.primary_key = 'post_id'
end
But I can still read and write all variables. Is this default behavior ?
x = LegacyBlogPost.find(172925)
x.title += "."
x.save
=> true
My main question though, is how do I avoid ever writing to this class ? I understand I could make the mysql user only be allowed to do select statements. Also I belive I could re-write the rails setters to just return as soon as the method is hit. But I had assumed if I just set attr_reader's for everything, the writers just wouldn't be there.