Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authormichaeltrimm <michaeltrimm@gmail.com>2012-04-30 18:33:00 +0400
committermichaeltrimm <michaeltrimm@gmail.com>2012-04-30 18:33:00 +0400
commitb8c69c6f3476be7a467983eb768d9d4264b19736 (patch)
treebfed0f3f85ea36230c9a16424c9f866be8cf839c /db
parent2176e2c91540d7c642046e9df4040bfd4c37f620 (diff)
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.rb2
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