Sha256: 9d8532fadb7d27e52add03b740cb7c0f8c1240bf3086a65bf162d5ffdb8cbc71
Contents?: true
Size: 349 Bytes
Versions: 2
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true Sequel.migration do change do create_table(:dynflow_coordinator_records) do column :id, String, size: 100 column :class, String, size: 100 primary_key [:id, :class] index :class column :owner_id, String index :owner_id column :data, String, text: true 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/004_coordinator_records.rb |
dynflow-1.8.3 | lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb |