class CreateRouterInventories < ActiveRecord::Migration[6.0]
  def change
    create_table :router_inventories do |t|
      t.string :mac_id
      t.string :router_serial_number
      t.integer :location_network_id
      t.integer :user_id
      t.integer :organisation_id
      t.timestamps
    end
  end
end
