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

Version Path
dynflow-1.9.0 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.8.3 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.8.2 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.8.1 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.8.0 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.7.0 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.11 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.10 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.8 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.7 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.6 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.5 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb
dynflow-1.6.4 lib/dynflow/persistence_adapters/sequel_migrations/022_store_flows_as_msgpack.rb