class CreateExternalIds < ActiveRecord::Migration[8.1] def change create_table :external_ids do |t| t.references :work, null: false, foreign_key: true t.integer :source t.string :value t.timestamps end end end