Class: AddHostDetails

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20120625000001_add_host_details.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'db/migrate/20120625000001_add_host_details.rb', line 13

def self.down
  drop_table :host_details
end

.upObject



3
4
5
6
7
8
9
10
11
# File 'db/migrate/20120625000001_add_host_details.rb', line 3

def self.up
  create_table :host_details do |t|
    t.integer   :host_id     # Host table reference

    # Nexpose-specific fields
    t.integer :nx_console_id   # NexposeConsole table reference
    t.integer :nx_device_id    # Reference from the Nexpose side
  end
end