mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 19:43:44 +08:00
5ffb722999
It's hard to see which columns have been remapped when remapping prints lots of "0 rows affected" lines. This changes it to output the row count only for affected columns.
63 lines
1.7 KiB
Ruby
63 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Remap
|
|
def initialize(from, to, regex: false, verbose: false)
|
|
@from = from
|
|
@to = to
|
|
@regex = regex
|
|
@verbose = verbose
|
|
end
|
|
|
|
def perform
|
|
sql = "SELECT table_name, column_name
|
|
FROM information_schema.columns
|
|
WHERE table_schema='public' and (data_type like 'char%' or data_type like 'text%') and is_updatable = 'YES'"
|
|
|
|
cnn = ActiveRecord::Base.connection.raw_connection
|
|
|
|
results = cnn.async_exec(sql).to_a
|
|
|
|
model_map = {}
|
|
|
|
results.each do |result|
|
|
table_name = result["table_name"]
|
|
column_name = result["column_name"]
|
|
|
|
model = begin
|
|
model_map[table_name] ||= table_name.camelize.singularize.constantize
|
|
rescue NameError
|
|
nil
|
|
end
|
|
|
|
if model &&
|
|
model.respond_to?(:ignored_columns) &&
|
|
model.ignored_columns.include?(column_name)
|
|
next
|
|
end
|
|
|
|
log "Remapping #{table_name} #{column_name}"
|
|
|
|
result = if @regex
|
|
cnn.async_exec("UPDATE #{table_name}
|
|
SET #{column_name} = regexp_replace(#{column_name}, $1, $2, 'g')
|
|
WHERE NOT #{column_name} IS NULL
|
|
AND #{column_name} <> regexp_replace(#{column_name}, $1, $2, 'g')", [@from, @to])
|
|
else
|
|
cnn.async_exec("UPDATE #{table_name}
|
|
SET #{column_name} = replace(#{column_name}, $1, $2)
|
|
WHERE NOT #{column_name} IS NULL
|
|
AND #{column_name} <> replace(#{column_name}, $1, $2)", [@from, @to])
|
|
end
|
|
|
|
log "#{result.cmd_tuples} rows affected!" if result.cmd_tuples > 0
|
|
end
|
|
|
|
Theme.expire_site_cache!
|
|
SiteIconManager.ensure_optimized!
|
|
end
|
|
|
|
def log(message)
|
|
puts(message) if @verbose
|
|
end
|
|
end
|