discourse/app/models/post_upload.rb

18 lines
342 B
Ruby
Raw Normal View History

2013-06-14 05:44:24 +08:00
class PostUpload < ActiveRecord::Base
belongs_to :post
belongs_to :upload
end
2013-06-17 08:48:58 +08:00
# == 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
#