This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/models/user_upload.rb
2018-10-08 18:01:21 +02:00

19 lines
406 B
Ruby

class UserUpload < ActiveRecord::Base
belongs_to :upload
belongs_to :user
end
# == Schema Information
#
# Table name: user_uploads
#
# id :bigint(8) not null, primary key
# 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
#