search for: update_column

Displaying 4 results from an estimated 4 matches for "update_column".

2012 Sep 25
0
update_attribute, update_column and update_columns should update readonly attributes
Hi. I created a pull request some time ago and didn''t get any reaction yet. https://github.com/rails/rails/pull/7688 Should I do something special or just have a patient and wait? I''m ready to answer any questions about my commit. Thanks in advance. Best regards, Vadim Pushtaev -- You received this message because you are subscribed to the Google Groups "Ruby on
2008 Feb 10
4
method from string?
...to support the updates. Here is what I am doing now: def set_blog_website faq = Faq.find(params[:id]) faq.blog_website = params[:value] faq.save! @faq = faq do_ret end Surely there is a generic way I can do this so that I can do something like def set_blog_website @faq = update_column(:blog_website) end def update_column(column_name) faq = Faq.find(params[:id]) faq.column_name = params[:value]<<-- here''s what I don''t know how to do! faq.save! @faq = faq do_ret end Any ideas on how I could set the attribute? Faq is an ActiveRecord::Base obj...
2008 May 15
13
ANNOUNCE: act_as_soft_deletable - new rails plugin for soft deleting / disabling ActiveRecord models
Acts_as_soft_deletable is a rails plugin that provides the ability to soft delete or disable models. When models are destroyed, they will be archived so that they can later be restored easily. Its similar to acts_as_paranoid but uses a different approach that should make it a little more foolproof. See the README at the following url for a better description. github url:
2012 Oct 23
7
Not updating the updated_at field
This is for Rails 3.1.1 I have a field called last_seen in a model. This field will be updated when the something about the record is seen in the real world (don''t worry about this part) So I go x.update_attribute(:last_seen, Time.now) and the following happens is UPDATE "blah" SET "last_seen" = ''2012-10-23 08:57:46.179288'', "updated_at"