mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
0391cd5f28
git-svn-id: file:///home/svn/framework3/trunk@8951 4d416f70-5f16-0410-b530-b9f4589650da
59 lines
1.1 KiB
Ruby
59 lines
1.1 KiB
Ruby
class ExpandInfo2 < ActiveRecord::Migration
|
|
def self.up
|
|
remove_column :events, :info
|
|
change_table :events do |t|
|
|
t.string :info, :limit => 65536
|
|
end
|
|
|
|
remove_column :notes, :data
|
|
change_table :notes do |t|
|
|
t.string :data, :limit => 65536
|
|
end
|
|
|
|
remove_column :vulns, :data
|
|
change_table :vulns do |t|
|
|
t.string :data, :limit => 65536
|
|
end
|
|
|
|
remove_column :hosts, :info
|
|
change_table :hosts do |t|
|
|
t.string :info, :limit => 65536
|
|
end
|
|
|
|
remove_column :services, :info
|
|
change_table :services do |t|
|
|
t.string :info, :limit => 65536
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
|
|
remove_column :events, :info
|
|
change_table :events do |t|
|
|
t.string :info
|
|
end
|
|
|
|
remove_column :notes, :data
|
|
change_table :notes do |t|
|
|
t.string :data, :limit => 4096
|
|
end
|
|
|
|
remove_column :hosts, :info
|
|
change_table :hosts do |t|
|
|
t.string :info, :limit => 4096
|
|
end
|
|
|
|
remove_column :vulns, :data
|
|
change_table :vulns do |t|
|
|
t.string :data, :limit => 4096
|
|
end
|
|
|
|
remove_column :services, :info
|
|
change_table :services do |t|
|
|
t.string :info, :limit => 4096
|
|
end
|
|
|
|
end
|
|
end
|
|
|