Files
metasploit-gs/data/sql/migrate/20110922000000_expand_notes.rb
T
HD Moore 2d45218d2a Expand this to text
git-svn-id: file:///home/svn/framework3/trunk@13771 4d416f70-5f16-0410-b530-b9f4589650da
2011-09-22 06:18:09 +00:00

10 lines
180 B
Ruby
Executable File

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