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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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"
|
|||
|
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 ? |
|||||||||
|