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:
authorNihad Abbasov <narkoz.2008@gmail.com>2011-11-15 12:34:30 +0400
committerNihad Abbasov <narkoz.2008@gmail.com>2011-11-15 12:34:30 +0400
commit368deb5992f27fce9a23629229af4367ba38f901 (patch)
treec76ca9922a8b789924032cfef63e7e52544add5d /db
parent415eddaf39d7e1ffc4bf009d43a273614224909b (diff)
clean up whitespace from project
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20111027152724_issue_conten_to_note.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/db/migrate/20111027152724_issue_conten_to_note.rb b/db/migrate/20111027152724_issue_conten_to_note.rb
index c151a9317ff..0677fee6b97 100644
--- a/db/migrate/20111027152724_issue_conten_to_note.rb
+++ b/db/migrate/20111027152724_issue_conten_to_note.rb
@@ -15,16 +15,16 @@ class IssueContenToNote < ActiveRecord::Migration
if note.save
issue.update_attributes(:content => nil)
print "."
- else
+ else
print "F"
end
end
total = Issue.where("content is not null").count
- if total > 0
- puts "content of #{total} issues were not migrated"
- else
+ if total > 0
+ puts "content of #{total} issues were not migrated"
+ else
puts "Done"
end
end