| Class | VideoSubject |
| In: |
app/models/video_subject.rb
|
| Parent: | ActiveRecord::Base |
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