Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8554407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:52:30+00:00 2026-06-11T14:52:30+00:00

How do you work with the old values of a record being updated? For

  • 0

How do you work with the old values of a record being updated?

For instance in the following code block how would I run a query using the previous winner_id field after I determine that it has indeed changed?

if self.winner_id_changed?
   old_value = self.changed_attributes
   User.find(old_value)
   #do stuff with the old winner....
end

An example output of self.changed_attributes would be:

{“winner_id”=>6}

Do I really have to convert this to a string and parse out the value in order to perform a query on it? old_value[:winner_id] doesn’t seem to do anything.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T14:52:31+00:00Added an answer on June 11, 2026 at 2:52 pm

    Use where instead of find, and the following inject method on changes to generate the desired hash:

    if self.winner_id_changed?
       old_value = self.changes.inject({}) { |h, (k,v)| h[k] = v.first }
       old_user = User.where(old_value)
       #do stuff with the old user....
    end
    

    You can also use ActiveRecord dirty methods such as:

    self.winner_id_was
    

    to get specific attribute’s old value. Full documentation may be found here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to work with some old C++ code that was developed in Visual
I am using a rather old verision of exist at work. I'd love to
I've been studying C# and ran accross some familiar ground from my old work
I've just moved onto a new machine. On my old work horse, I had
svn: This client is too old to work with working copy 'D:\CemT\PublishFolder' lease get
I need to work with an old repository, whose db/format contains 2 From this
lazy dont have to read this I have to work on an old netbeans
I'm sick of getting This client is too old to work with working copy
At work I have an app sitting on Oracle 7.3 (old stuff, yes). Recently
I work on an inherited project, old enough to use EJB 2.1 and JBoss

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.