diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2011-11-15 12:34:30 +0400 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2011-11-15 12:34:30 +0400 |
commit | 368deb5992f27fce9a23629229af4367ba38f901 (patch) | |
tree | c76ca9922a8b789924032cfef63e7e52544add5d /db | |
parent | 415eddaf39d7e1ffc4bf009d43a273614224909b (diff) | |
download | gitlab-ce-368deb5992f27fce9a23629229af4367ba38f901.tar.gz |
clean up whitespace from project
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20111027152724_issue_conten_to_note.rb | 8 |
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 |