2013-06-13 17:44:24 -04:00
|
|
|
class PostUpload < ActiveRecord::Base
|
|
|
|
belongs_to :post
|
|
|
|
belongs_to :upload
|
|
|
|
end
|
2013-06-16 20:48:58 -04: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
|
|
|
|
#
|