mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
57 lines
1.1 KiB
Ruby
57 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module FreedomPatches
|
|
module SchemaMigrationDetails
|
|
def exec_migration(conn, direction)
|
|
rval = nil
|
|
|
|
time = Benchmark.measure do
|
|
rval = super
|
|
end
|
|
|
|
sql = <<SQL
|
|
INSERT INTO schema_migration_details(
|
|
version,
|
|
hostname,
|
|
name,
|
|
git_version,
|
|
duration,
|
|
direction,
|
|
rails_version,
|
|
created_at
|
|
) values (
|
|
:version,
|
|
:hostname,
|
|
:name,
|
|
:git_version,
|
|
:duration,
|
|
:direction,
|
|
:rails_version,
|
|
:created_at
|
|
)
|
|
SQL
|
|
|
|
hostname = `hostname` rescue ""
|
|
sql = ActiveRecord::Base.public_send(:sanitize_sql_array, [sql, {
|
|
version: version || "",
|
|
duration: (time.real * 1000).to_i,
|
|
hostname: hostname,
|
|
name: name,
|
|
git_version: Discourse.git_version,
|
|
created_at: Time.zone.now,
|
|
direction: direction.to_s,
|
|
rails_version: Rails.version
|
|
}])
|
|
|
|
conn.execute(sql)
|
|
|
|
rval
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
class ActiveRecord::Migration
|
|
prepend FreedomPatches::SchemaMigrationDetails
|
|
end
|