mirror of
https://github.com/redmine/redmine.git
synced 2025-12-15 21:10:27 +01:00
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
This commit is contained in:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user