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

5 lines
138 B
Ruby

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