REFACTOR: Don't load entire AR object just to get a column.

This commit is contained in:
Guo Xiang Tan 2018-07-18 11:25:16 +08:00
parent 7da22e395b
commit be71f9ff82

View File

@ -65,8 +65,9 @@ class EmailLog < ActiveRecord::Base
def self.last_sent_email_address
self.where(email_type: "signup")
.order(created_at: :desc)
.limit(1)
.pluck(:to_address)
.first
.try(:to_address)
end
def bounce_key