class AddBibIdToHoldings < ActiveRecord::Migration[6.0]
  def change
    add_reference :library_holdings, :bib, null: false, foreign_key: { to_table: :library_bibs },
      after: :id
  end
end
