discourse/app/models/post_upload.rb

19 lines
343 B
Ruby

class PostUpload < ActiveRecord::Base
belongs_to :post
belongs_to :upload
end
# == Schema Information
#
# Table name: post_uploads
#
# id :integer not null, primary key
# post_id :integer not null
# upload_id :integer not null
#
# Indexes
#
# idx_unique_post_uploads (post_id,upload_id) UNIQUE
#