58 lines
1.3 KiB
Ruby
58 lines
1.3 KiB
Ruby
class AddWebTables < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
create_table :web_sites do |t|
|
|
t.integer :service_id, :null => false
|
|
t.timestamps
|
|
t.string :vhost, :limit => 2048
|
|
t.text :comments
|
|
t.text :options
|
|
end
|
|
|
|
create_table :web_pages do |t|
|
|
t.integer :web_site_id, :null => false
|
|
t.timestamps
|
|
t.string :path, :limit => 65535
|
|
t.string :query, :limit => 65535
|
|
t.integer :code, :null => false
|
|
t.string :cookie, :limit => 65535
|
|
t.string :auth, :limit => 65535
|
|
t.string :ctype, :limit => 65535
|
|
t.timestamp :mtime
|
|
t.string :location, :limit => 65535
|
|
t.text :body
|
|
t.text :headers
|
|
end
|
|
|
|
create_table :web_forms do |t|
|
|
t.integer :web_site_id, :null => false
|
|
t.timestamps
|
|
t.string :path, :limit => 65535
|
|
t.string :method, :limit => 1024
|
|
t.text :params
|
|
end
|
|
|
|
create_table :web_vulns do |t|
|
|
t.integer :web_site_id, :null => false
|
|
t.timestamps
|
|
t.string :path, :limit => 65535
|
|
t.string :method, :limit => 1024
|
|
t.text :params
|
|
t.string :pname, :limit => 65535
|
|
t.text :proof
|
|
t.integer :risk
|
|
t.string :name, :limit => 1024
|
|
end
|
|
|
|
end
|
|
|
|
def self.down
|
|
drop_table :web_sites
|
|
drop_table :web_pages
|
|
drop_table :web_forms
|
|
drop_table :web_vulns
|
|
end
|
|
end
|
|
|
|
|