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

5 lines
114 B
Ruby
Raw Normal View History

2011-06-14 16:05:12 +00:00
class Album < ActiveRecord::Base
2011-06-14 20:01:42 +00:00
belongs_to :artist
has_many :tracks, :order => 'bonus ASC, position ASC'
2011-06-14 16:05:12 +00:00
end