metasploit-framework/data/sql/migrate/20111210000000_add_scope_to...

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