Fixed a bug in the bundle exec rake db:migrate RAILS_ENV=production that causes the rake to fail and the system not properly install the default user and password.

3-1-stable
michaeltrimm 2012-04-30 11:33:00 -03:00
parent 2176e2c915
commit b8c69c6f34
1 changed files with 1 additions and 1 deletions

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