Skip to content

Instantly share code, notes, and snippets.

@nmcolome
Last active February 21, 2018 21:07
Show Gist options
  • Save nmcolome/9415cfbfb395b43c841e90642286a73c to your computer and use it in GitHub Desktop.
Save nmcolome/9415cfbfb395b43c841e90642286a73c to your computer and use it in GitHub Desktop.
class Sale < ApplicationRecord
...
def self.get_latest_month
Sale.order(transaction_date: :desc)
.limit(1)
.pluck(:transaction_date)[0]
.month
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment