tap/app/models/order.rb

5 lines
105 B
Ruby
Raw Normal View History

2014-11-09 21:53:39 +00:00
class Order < ActiveRecord::Base
2014-11-23 20:12:31 +00:00
belongs_to :users
2014-11-10 21:57:37 +00:00
default_scope -> { order('created_at DESC') }
2014-11-09 21:53:39 +00:00
end