Skip to content

Instantly share code, notes, and snippets.

@chiastolite
Created January 25, 2019 04:03
Show Gist options
  • Save chiastolite/010833c4fae1f631c5fdb6e679cd8fce to your computer and use it in GitHub Desktop.
Save chiastolite/010833c4fae1f631c5fdb6e679cd8fce to your computer and use it in GitHub Desktop.
class Coupon < ApplicationRecord
scope :expired, -> { where('valid_until < ', Time.zone.now) }
def expired?
valid_until < Time.zone.now
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment