blob: 48d38713870f13dde8dbef7e98b93b2bc9a94388 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CopyRepositoriesLogEncoding < ActiveRecord::Migration
def self.up
encoding = Setting.commit_logs_encoding.to_s.strip
encoding = encoding.blank? ? 'UTF-8' : encoding
# encoding is NULL by default
Repository.where("type IN ('Bazaar', 'Cvs', 'Darcs')").
update_all(["log_encoding = ?", encoding])
end
def self.down
end
end
|