mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 05:07:19 +08:00
16 lines
464 B
Ruby
16 lines
464 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateUploadReferences < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :upload_references do |t|
|
|
t.references :upload, null: false
|
|
t.references :target, polymorphic: true, null: false
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :upload_references,
|
|
%i[upload_id target_type target_id],
|
|
unique: true,
|
|
name: "index_upload_references_on_upload_and_target"
|
|
end
|
|
end
|