Files
metasploit-gs/data/sql/migrate/20101203000001_expand_host_comment.rb
T
2011-11-10 19:48:32 -06:00

13 lines
198 B
Ruby
Executable File

class ExpandHostComment < ActiveRecord::Migration
def self.up
change_column :hosts, :comments, :text
end
def self.down
change_column :hosts, :comments, :string, :limit => 4096
end
end