Browse Source

code cleanup: rubocop: fix Rails/Presence in db/migrate/20110228000100_copy_repositories_log_encoding.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18519 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Toshi MARUYAMA 4 years ago
parent
commit
e83313240f
2 changed files with 1 additions and 2 deletions
  1. 0
    1
      .rubocop_todo.yml
  2. 1
    1
      db/migrate/20110228000100_copy_repositories_log_encoding.rb

+ 0
- 1
.rubocop_todo.yml View File

@@ -961,7 +961,6 @@ Rails/Presence:
- 'app/models/repository.rb'
- 'config/initializers/10-patches.rb'
- 'config/initializers/30-redmine.rb'
- 'db/migrate/20110228000100_copy_repositories_log_encoding.rb'
- 'lib/redmine/codeset_util.rb'
- 'lib/redmine/i18n.rb'
- 'lib/redmine/scm/adapters/abstract_adapter.rb'

+ 1
- 1
db/migrate/20110228000100_copy_repositories_log_encoding.rb View File

@@ -1,7 +1,7 @@
class CopyRepositoriesLogEncoding < ActiveRecord::Migration[4.2]
def self.up
encoding = Setting.commit_logs_encoding.to_s.strip
encoding = encoding.blank? ? 'UTF-8' : encoding
encoding = encoding.presence || 'UTF-8'
# encoding is NULL by default
Repository.where("type IN ('Bazaar', 'Cvs', 'Darcs')").
update_all(["log_encoding = ?", encoding])

Loading…
Cancel
Save