diff --git a/db/migrate/20120819102731_change_data_type_for_table_column.rb b/db/migrate/20120819102731_change_data_type_for_table_column.rb new file mode 100644 index 0000000..b062da5 --- /dev/null +++ b/db/migrate/20120819102731_change_data_type_for_table_column.rb @@ -0,0 +1,10 @@ +class ChangeDataTypeForTableColumn < ActiveRecord::Migration + def up + change_column :question_sets, :content, :text + + end + + def down + + end +end