Sha256: 0fd87783fa75f5f1729f12cac1ec1e2d878e28066d9f3fa7b44a24b6a4285205
Contents?: true
Size: 580 Bytes
Versions: 13
Compression:
Stored size: 580 Bytes
Contents
# frozen_string_literal: true require_relative 'msgpack_migration_helper' Sequel.migration do helper = MsgpackMigrationHelper.new({ :dynflow_actions => [:data, :input, :output], :dynflow_coordinator_records => [:data], :dynflow_delayed_plans => [:serialized_args, :data], :dynflow_envelopes => [:data], :dynflow_execution_plans => [:run_flow, :finalize_flow, :execution_history, :step_ids], :dynflow_steps => [:error, :children], :dynflow_output_chunks => [:chunk] }) up do helper.up(self) end down do helper.down(self) end end
Version data entries
13 entries across 13 versions & 1 rubygems