mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-25 02:05:10 -04:00
9 lines
193 B
Ruby
9 lines
193 B
Ruby
class Order < ActiveRecord::Base
|
|
attr_accessible :member_id, :completed_at
|
|
belongs_to :member
|
|
|
|
has_many :order_items, :dependent => :destroy
|
|
|
|
default_scope order('created_at DESC')
|
|
end
|