summaryrefslogtreecommitdiff
path: root/db/migrate/20210605223042_rename_pig_iron_ingots.rb
blob: 7a0c98ef69146d0d73e6673244eef6344923863d (plain)
1
2
3
4
5
class RenamePigIronIngots < ActiveRecord::Migration[6.1]
  def change
    Item.find_by_gid("pig_iron_ingot").update(gid: "crude_iron_ingot")
  end
end