Files
metasploit-gs/data/sql/migrate/007_add_loots.rb
T
HD Moore 20c96a191d Fix loots, add users
git-svn-id: file:///home/svn/framework3/trunk@8593 4d416f70-5f16-0410-b530-b9f4589650da
2010-02-22 22:57:02 +00:00

21 lines
365 B
Ruby

class AddLoots < ActiveRecord::Migration
def self.up
create_table :loots do |t|
t.integer :workspace_id, :null => false, :default => 1
t.integer :host_id
t.integer :service_id
t.string :ltype, :limit => 512
t.string :path, :limit => 1024
t.text :data
t.timestamps
end
end
def self.down
drop_table :loots
end
end