1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class PopulateScriptParametersDigest < ActiveRecord::Migration[4.2]
11 where('script_parameters_digest is null').
12 select([:id, :script_parameters, :script_parameters_digest]).
17 where('id=? or script_parameters=?', j.id, j.script_parameters.to_yaml).
18 update_all(script_parameters_digest: j.update_script_parameters_digest)