0
votes
0answers
55 views

Is there a way to use update_attributes(params[:photo]) where params contains the hash for items that are connected to an active record association?

Is there a way to use update_attributes(params[:photo]) where params contains the hash for items that are connected to an active record association? For example, I have a has_and_belongs_to_many ...
2
votes
5answers
512 views

update_attribute/s() is calling callback for save password

I'm trying to update single attribute of a user model from a admin controller (not users controller). While doing this I tried update_attribute() but it was changing the users password also. I ...
1
vote
0answers
117 views

Thinking Sphinx type integer with has_many association

Example: We have a model Book (title:string desc:text) and a model Reader (some_integer:integer book_id:integer name:string) class Book < ActiveRecord::Base has_many :readers define_index do ...
0
votes
1answer
940 views

Rails 3 update_attribute not firing

I have a member model with a reset_token method (which assigns a user a new token in order to send them an email to reset their password). But update_attribute never saves anything in the database. I ...
1
vote
1answer
2k views

Readonly error when running a Rails 3 migration with update_attribute

I'm trying to add a counter_cache and this Rails 3 migration is giving me an error I just can't seem to resolve. The migration is class AddItemsCountToStore < ActiveRecord::Migration def ...
2
votes
2answers
1k views

what `update_attribute` return if it get failed?

I have following piece of code @user = User.find(params[:id]) if (@user.activation_status == "active") #some code here @user.update_attribute('activation_status' ,'inactive') # Line 44 #send ...