Sha256: 23e3e583a0d57dec62f7027aeb1480bbb5c3f7af696d10e469eb4ebed93cb7a9
Contents?: true
Size: 387 Bytes
Versions: 23
Compression:
Stored size: 387 Bytes
Contents
class AddExploitedTable < ActiveRecord::Migration[4.2] 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
23 entries across 23 versions & 2 rubygems