mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 23:05:35 +08:00
18 lines
409 B
Ruby
18 lines
409 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropPostsUploads < ActiveRecord::Migration[4.2]
|
|
def up
|
|
drop_table :posts_uploads
|
|
end
|
|
|
|
def down
|
|
create_table :posts_uploads, id: false do |t|
|
|
t.integer :post_id
|
|
t.integer :upload_id
|
|
end
|
|
|
|
add_index :posts_uploads, :post_id
|
|
add_index :posts_uploads, :upload_id
|
|
add_index :posts_uploads, %i[post_id upload_id], unique: true
|
|
end
|
|
end
|