Sha256: 7a9441cec1b5236650c224c2fa0c5472654ab7ae9b0b8b5e9266032271a13d67
Contents?: true
Size: 371 Bytes
Versions: 110
Compression:
Stored size: 371 Bytes
Contents
class AddExploitedTable < ActiveRecord::Migration def self.up create_table :exploited_hosts do |t| t.integer :host_id, :null => false t.integer :service_id t.string :session_uuid, :limit => 8 t.string :name, :limit => 2048 t.string :payload, :limit => 2048 t.timestamps end end def self.down drop_table :exploited_hosts end end
Version data entries
110 entries across 110 versions & 1 rubygems