class Stage < ActiveRecord::Base
belongs_to :subject
belongs_to :user
attr_accessible :description, :name, :position, :subject_id, :user_id
has_many :stage_shixuns, :dependent => :destroy, :order => "stage_shixuns.position ASC"
end