2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-09-20 01:33:10 -04:00
|
|
|
class UserUpload < ActiveRecord::Base
|
|
|
|
belongs_to :upload
|
|
|
|
belongs_to :user
|
|
|
|
end
|
2018-10-08 10:40:05 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_uploads
|
|
|
|
#
|
2019-05-02 18:34:12 -04:00
|
|
|
# id :bigint not null, primary key
|
2018-10-08 10:40:05 -04:00
|
|
|
# upload_id :integer not null
|
|
|
|
# user_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_user_uploads_on_upload_id_and_user_id (upload_id,user_id) UNIQUE
|
2019-04-26 04:23:27 -04:00
|
|
|
# index_user_uploads_on_user_id_and_upload_id (user_id,upload_id)
|
2018-10-08 10:40:05 -04:00
|
|
|
#
|