redmine/db/migrate/20190510070108_add_unique_id_to_import_items.rb
Jean-Philippe Lang 638dbbea95 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
2019-06-20 08:17:19 +00:00

9 righe
199 B
Ruby

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