Commit 65382133d5f7e9ab683f0b1928d60b93daa13996

Authored by Dmitriy Zaporozhets
2 parents b5d5ecd1 b8c69c6f

Merge pull request #761 from michaeltrimm/patch-1

Fixed a bug in the bundle exec rake db:migrate RAILS_ENV=production that...
db/migrate/20111027142641_change_note_note_to_text.rb
1 1 class ChangeNoteNoteToText < ActiveRecord::Migration
2 2 def up
3   - change_column :notes, :note, :text, :limit => false
  3 + change_column :notes, :note, :text
4 4 end
5 5  
6 6 def down
... ...