Support external ID when importing issues (#28213).

Patch by Gregor Schmidt and Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@18285 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2019-06-20 08:17:19 +00:00
parent d915e71d0f
commit 638dbbea95
8 changed files with 66 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
class AddUniqueIdToImportItems < ActiveRecord::Migration[5.2]
def change
change_table :import_items do |t|
t.string "unique_id"
t.index ["import_id", "unique_id"]
end
end
end