class CreateSnmpConfigs < ActiveRecord::Migration[6.0]
  def change
    create_table :snmp_configs do |t|
      t.integer :router_inventory_id
      t.integer :location_network_id
      t.integer :organisation_id
      t.string :server_ip
      t.string :server_port
      t.string :server_community
      t.string :ro_community
      t.string :rw_community

      t.timestamps
    end
  end
end
