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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:32:35+00:00 2026-05-26T20:32:35+00:00

I have User model and Group model. User belongs_to Group . Group has an

  • 0

I have User model and Group model. User belongs_to Group. Group has an attribute check_minutes.

I want to create two scopes in User model: old and fresh. Old users is users with created_at older than user.group.check_minutes.ago. And fresh users is users with created_at newer than user.group.check_minutes.ago.

I wrote the scopes:

  scope :old,   joins(:group).where("`users`.`created_at` <=
        DATE_SUB(NOW(), INTERVAL `groups`.`check_minutes` MINUTE)")
  scope :fresh, joins(:group).where("`users`.`created_at` >
        DATE_SUB(NOW(), INTERVAL `groups`.`check_minutes` MINUTE)")

And specs:

  describe "scopes" do
    let(:group) {Group.make :check_minutes => 20}
    let(:old_user) {User.make :group => group, :created_at => 30.minutes.ago}
    let(:new_user) {User.make :group => group, :created_at => 10.minutes.ago}

    context "#fresh" do
      it "should scope all new users" do
        User.fresh.should eq([ new_user ])
      end
    end
    context "#old" do
      it "should scope all old users" do
        User.old.should eq([ old_user ])
      end
    end
  end

Specs fails on fresh (for old it is ok):

  expected  [#<User id: 7967, ... >]
        got []

What’s wrong?! How to force my scopes\specs to work well?

It would be great If you know the better way to organize scopes!

  • 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-26T20:32:36+00:00Added an answer on May 26, 2026 at 8:32 pm

    Your scopes are OK.

    The problem you’re having is that Rails stores UTC time values in the database, regardlessly of the database’s configured time zone, and converts them into your (Rails) timezone while doing ORM.

    …Which means your scopes are almost OK – you just have to inject the ‘Rails’ current time into the query.

    scope :old, lambda {  joins(:group).where(["`users`.`created_at` <=
        DATE_SUB(?, INTERVAL `groups`.`check_minutes` MINUTE)", Time.zone.now]) }
    scope :fresh, lambda { joins(:group).where(["`users`.`created_at` >
        DATE_SUB(?, INTERVAL `groups`.`check_minutes` MINUTE)", Time.zone.now]) }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a User and Group model. User has_many Groups and Group belongs_to User
So I have 2 models. Users and Groups. Each group has a user as
I have a user, membership and group model. A user has many memberships, and
I have two models, user and group. I also have a joining table groups_users.
I have a User model and a Submission model. Each Submission has a ForeignKey
I have a User model and an Account model. The user has many accounts
I have a User model that has the following default_scope: default_scope where(account_id: Account.current_account.id) If
I have a User model. I am trying to update a confirm attribute from
My Rails application have a User model and a Group model, where User belongs
I have the following two simple models for users and user groups: class User

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.