2015-04-30 08:52:00 +00:00

22 lines
271 B
Ruby

class Track < ActiveRecord::Base
has_many :sounds
validates_presence_of :name
def file= file
sounds.build file: file
end
def sound
sounds.first
end
def sound?
sounds.any?
end
def self.latest
Track.order('created_at DESC')
end
end