Files
metasploit-gs/data/sql/migrate/20110922000000_expand_notes.rb
T

10 lines
180 B
Ruby
Raw Normal View History

2011-09-22 06:18:09 +00:00
class ExpandNotes < ActiveRecord::Migration
def self.up
change_column :notes, :data, :text
end
def self.down
change_column :notes, :data, :string, :limit => 65536
end
end