diff options
author | michaeltrimm <michaeltrimm@gmail.com> | 2012-04-30 11:33:00 -0300 |
---|---|---|
committer | michaeltrimm <michaeltrimm@gmail.com> | 2012-04-30 11:33:00 -0300 |
commit | b8c69c6f3476be7a467983eb768d9d4264b19736 (patch) | |
tree | bfed0f3f85ea36230c9a16424c9f866be8cf839c /db | |
parent | 2176e2c91540d7c642046e9df4040bfd4c37f620 (diff) | |
download | gitlab-ce-b8c69c6f3476be7a467983eb768d9d4264b19736.tar.gz |
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.
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20111027142641_change_note_note_to_text.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20111027142641_change_note_note_to_text.rb b/db/migrate/20111027142641_change_note_note_to_text.rb index 1bcf4b72bc2..d762d361aec 100644 --- a/db/migrate/20111027142641_change_note_note_to_text.rb +++ b/db/migrate/20111027142641_change_note_note_to_text.rb @@ -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 |