Skip to content

Instantly share code, notes, and snippets.

View mksm's full-sized avatar

Ricardo Amorim mksm

View GitHub Profile
@mksm
mksm / models.rb
Last active September 16, 2016 17:21 — forked from kpheasey/models.rb
Speed Test
class Order < ApplicationRecord
belongs_to :customer
def totals_by_customer
Order.group(:customer).sum(:total)
end
end
class Customer < ApplicationRecord
has_many :orders