class CreateMasterRouterInventories < ActiveRecord::Migration[6.0]
  def change
    create_table :master_router_inventories do |t|
      t.string :mac_id
      t.references :hardware_part, index: true

      t.timestamps
    end
  end
end
