If I create an instance variable of a user within the Users controller, then try to add to a field array, I can see it has been added, but when I go to save, it does not save
@instructor = User.find(current_user.id)
@instructor.clients = @instructor.clients << User.last.id
@instructor.save
When I then go to Pry and do the same exact operation with an instance variable I create in Pry, it does save. Why is that and how can I get this to work in the controller?
The array field is a postgres numeric array.
Your problem is that this:
doesn't actually change
@instructor.clients
in a way that ActiveRecord will know about.For example:
Same
object_id
means the same array and no one (but you) will know thata
has actually changed.So
@instructor.clients
is the same object before you addUser.last.id
to it as it is after you've pushedUser.last.id
onto it and ActiveRecord won't realize that you've changed anything. Then you@instructor.save
and it successfully does nothing at all.You need to create a new array:
The
Array#+
creates a whole new array and that will let ActiveRecord know that something has changed. Then your@instructor.save
will actually write the new array to the database and the updated array will be there the next time you pull that instructor out of the database.