def update_reply_data @record = TableOne.find(…) @record.update_attribute(:reply_data, new_value)
end
for:
TableOne.find(…)
must have some useful findcode, of course
and:
new_value should be the new value for reply_data,
whatever that is, can’t see that in your question
if the tables are related in some form, things get
more easy if you define this with belongs_to,
has_many and so on. but again i can’t guess those
details from your question