| Path: | app/models/audio_subject.rb |
| Last Update: | Fri Nov 23 11:35:15 +1100 2007 |
Audio Subjects exist to link the Audio class with a variety of classes which are featured as subjects of Audio files.
schema.rb snippet:
create_table "audio_subjects", :force => true do |t|
t.column "audio_id", :integer, :null => false
t.column "subject_id", :integer, :null => false
t.column "subject_type", :string, :null => false
end