Merge pull request #761 from michaeltrimm/patch-1

Fixed a bug in the bundle exec rake db:migrate RAILS_ENV=production that...
This commit is contained in:
Dmitriy Zaporozhets 2012-05-13 08:20:14 -07:00
commit 65382133d5

View file

@ -1,6 +1,6 @@
class ChangeNoteNoteToText < ActiveRecord::Migration
def up
change_column :notes, :note, :text, :limit => false
change_column :notes, :note, :text
end
def down