class Album < ActiveRecord::Base
  belongs_to :artist
  has_many :tracks, :order => 'bonus ASC, position ASC', :dependent => :destroy
end