You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20190510070108_add_unique_id_to_import_items.rb 199B

12345678
  1. class AddUniqueIdToImportItems < ActiveRecord::Migration[5.2]
  2. def change
  3. change_table :import_items do |t|
  4. t.string "unique_id"
  5. t.index ["import_id", "unique_id"]
  6. end
  7. end
  8. end