removed connection_track model

This commit is contained in:
Brian Smith 2012-12-16 08:28:07 -05:00
parent 97dd557854
commit 5e0004f854
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
module JamRuby
class ConnectionTrack < ActiveRecord::Base
self.table_name = "connections_tracks"
self.primary_key = 'id'
SOUND = %w(mono stereo)
belongs_to :connection, :class_name => "JamRuby::Connection", :inverse_of => :connection_tracks
belongs_to :instrument, :class_name => "JamRuby::Instrument", :inverse_of => :connection_tracks
validates :sound, :inclusion => {:in => SOUND}
end
end