Expand this to text

git-svn-id: file:///home/svn/framework3/trunk@13771 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2011-09-22 06:18:09 +00:00
parent 7a3be4fe38
commit 2d45218d2a
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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