tap/app/models/order.rb
2014-11-25 21:34:29 +01:00

9 lines
180 B
Ruby

class Order < ActiveRecord::Base
belongs_to :user
has_many :order_products
has_many :products, through: :order_products
default_scope -> { order('created_at DESC') }
end