video.rb 309 Bytes
# == Schema Information
#
# Table name: v_libras_videos
#
#  id         :integer          not null, primary key
#  request_id :integer
#  url        :string(255)
#  created_at :datetime
#  updated_at :datetime
#

class VLibras::Video < ActiveRecord::Base
  belongs_to :request, :class => VLibras::Request
end