Files
metasploit-gs/data/sql/migrate/20111210000000_add_scope_to_hosts.rb
T
2011-12-10 13:24:58 -06:00

10 lines
165 B
Ruby
Executable File

class AddScopeToHosts < ActiveRecord::Migration
def self.up
add_column :hosts, :scope, :text
end
def self.down
remove_column :hosts, :scope
end
end