string to text

This commit is contained in:
Nicolas Bally 2012-08-20 14:38:28 +02:00
parent 822c11f4c0
commit c583d7142b

View File

@ -0,0 +1,10 @@
class ChangeDataTypeForTableColumn < ActiveRecord::Migration
def up
change_column :question_sets, :content, :text
end
def down
end
end