class AddNameNotesAddressToRouterInventory < ActiveRecord::Migration[6.0]
  def change
    add_column :router_inventories, :name, :string
    add_column :router_inventories, :notes, :text
    add_column :router_inventories, :address, :text
  end
end
