1
0
Fork 0
oldhaven/app/models/album.rb

5 lines
114 B
Ruby

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