mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
22 lines
505 B
Ruby
22 lines
505 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserUpload < ActiveRecord::Base
|
|
belongs_to :upload
|
|
belongs_to :user
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_uploads
|
|
#
|
|
# id :bigint 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
|
|
# index_user_uploads_on_user_id_and_upload_id (user_id,upload_id)
|
|
#
|