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