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 1032199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:02:40+00:00 2026-05-16T14:02:40+00:00

I’m building an application that checks when a user needs to change the oil

  • 0

I’m building an application that checks when a user needs to change the oil of one of his cars. Here’s how it works:

  1. The user enters the name of his car (e.g. ‘Ford Mustang’)
  2. The user enters the time the car will run on one oil change (e.g. 3.months)
  3. The user saves the car to the database
  4. Repeat above process for all his other cars. (Yes, it’s a wealthy user 😉

Now, when the user comes back to the site he wants to see a list of all his cars that are in need of an oil change. He then changes the oil and updates the ‘oil_changed_at’ property.

I’m using the following columns for the Car-model:

title:string
oil_changed_at:datetime
oil_expiration_timeframe:integer

My question: What is the preferred way to store this ‘oil_expiration_timeframe’ and what should my :conditions look like when I want to get a list of all cars that are in need of an oil change?

Keep in mind the oil_expiration_timeframe may vary from a few days to a few years. It will never be less than a day so I think I can just store the amount of days in that field. However, I’m not sure how to combine the integer and datetime in the query.

  • 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-05-16T14:02:41+00:00Added an answer on May 16, 2026 at 2:02 pm

    If you index your oil_changed_at column, following approach is efficient.

    Car.all(:conditions => [
      "oil_changed_at > DATE_SUB(?, INTERVAL oil_expiration_timeframe day)", Time.now
    ])
    

    Better approach would be to add a new column(next_oil_change_date) to Car model to store the next oil change date and update the col upon changes to the Car model.

    class Car < ActiveRecord::Base
      before_save :set_next_oil_change_date
    
      def set_next_oil_change_date
        self.next_oil_change_date = next_oil_change_date + 
                                      oil_expiration_timeframe.days
      end
    end
    

    Now you can write your query as:

    Car.all(:conditions => [
      "next_oil_change_date > ? ", Time.now
    ])
    

    Don’t forget to index the next_oil_change_date column.

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

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
We're building an app, our first using Rails 3, and we're having to build
I know there's a lot of other questions out there that deal with this

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.