Sha256: af024844705add57f15ae43e36f15180306f642d35b11193e7e3e712e8f5e349
Contents?: true
Size: 423 Bytes
Versions: 2
Compression:
Stored size: 423 Bytes
Contents
# frozen_string_literal: true Sequel.migration do change do create_table(:dynflow_scheduled_plans) do foreign_key :execution_plan_uuid, :dynflow_execution_plans, type: String, size: 36, fixed: true index :execution_plan_uuid column :start_at, Time index :start_at column :start_before, Time column :data, String, text: true column :args_serializer, String end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dynflow-1.9.0 | lib/dynflow/persistence_adapters/sequel_migrations/007_future_execution.rb |
dynflow-1.8.3 | lib/dynflow/persistence_adapters/sequel_migrations/007_future_execution.rb |