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.
This commit is contained in:
parent
2176e2c915
commit
b8c69c6f34
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
class ChangeNoteNoteToText < ActiveRecord::Migration
|
class ChangeNoteNoteToText < ActiveRecord::Migration
|
||||||
def up
|
def up
|
||||||
change_column :notes, :note, :text, :limit => false
|
change_column :notes, :note, :text
|
||||||
end
|
end
|
||||||
|
|
||||||
def down
|
def down
|
||||||
|
|
Loading…
Reference in a new issue