tap/app/models/order.rb

6 lines
106 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-25 01:01:57 +00:00
2014-11-09 21:53:39 +00:00
end