You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently we often have to write something like this:
before do
ActiveRecord::Base.record_timestamps = false
end
for_each_query_version do |qv|
qv.parameters = convert(qv.parameters)
qv.save!
end
after do
ActiveRecord::Base.record_timestamps = true
end
because we don't want to modify updated_at as a result of the script. There should be a configuration to do this.
The text was updated successfully, but these errors were encountered:
currently we often have to write something like this:
because we don't want to modify updated_at as a result of the script. There should be a configuration to do this.
The text was updated successfully, but these errors were encountered: