summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-05-13 08:20:14 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-05-13 08:20:14 -0700
commit65382133d5f7e9ab683f0b1928d60b93daa13996 (patch)
tree99587dcd5438f0e508443c01512d16937a9b695d /db
parentb5d5ecd1553a4d7a2f2ae151d194ecabc6f0089c (diff)
parentb8c69c6f3476be7a467983eb768d9d4264b19736 (diff)
downloadgitlab-ce-65382133d5f7e9ab683f0b1928d60b93daa13996.tar.gz
Merge pull request #761 from michaeltrimm/patch-1
Fixed a bug in the bundle exec rake db:migrate RAILS_ENV=production that...
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