Sha256: fe1eaad9daf68b01210b4b2c034335958abb899b10659369e1d92bd24b02a1fb
Contents?: true
Size: 382 Bytes
Versions: 44
Compression:
Stored size: 382 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 null: false end end def self.down drop_table :exploited_hosts end end
Version data entries
44 entries across 44 versions & 1 rubygems