vote up 2 vote down star

Hey folks,

I have a database table with a certain field which should be impossible to update once it has been inserted to the database. How do I tell my model that it shouldn't allow updating of a certain field?

Best Regards, x3ro

flag

3 Answers

vote up 4 vote down check

You want to use attr_readonly.

From the docs: "Attributes listed as readonly can be set for a new record, but will be ignored in database updates afterwards"

class Customer < ActiveRecord::Base
    attr_readonly :your_field_name
end
link|flag
vote up 1 vote down

My rails is rusty, but I think that something like the following would do the trick:

def foo= (val)
    raise DontDoThatException.new
end
link|flag
1  
This also prevents creating the object in the first place. – x3ro Oct 9 at 8:28
vote up 0 vote down

And that field is always and by definition "correct" (i.e. an accurate representation of reality) at the time of insertion ?

No user ever makes a mistake when entering that field for the first (and in your scheme : only) time ?

link|flag
Actually the user doesn't enter it at all, it's set by the controller. What I want to prevent is that someone modifies it using an altered post-request. – x3ro Oct 9 at 12:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.