2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreatePostUploads < ActiveRecord::Migration[4.2]
|
2013-06-13 17:44:24 -04:00
|
|
|
def up
|
|
|
|
create_table :post_uploads do |t|
|
|
|
|
t.integer :post_id, null: false
|
|
|
|
t.integer :upload_id, null: false
|
|
|
|
end
|
|
|
|
|
|
|
|
# no support for this till rails 4
|
|
|
|
execute 'create unique index idx_unique_post_uploads on post_uploads(post_id, upload_id)'
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
drop_table :post_uploads
|
|
|
|
end
|
|
|
|
end
|