8 lines
180 B
Ruby
8 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
|