Sha256: 9b61a9fce8c4a8c31469f09deab91a3fbc8793b6199869b6413a6d078ed3032b

Contents?: true

Size: 349 Bytes

Versions: 25

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

25 entries across 25 versions & 1 rubygems

Version Path
dynflow-1.8.2 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.8.1 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.8.0 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.7.0 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.11 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.10 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.8 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.7 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.6 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.5 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.4 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.3 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.2 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.6.1 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.4.9 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.4.8 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.5.0 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.4.7 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.4.6 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb
dynflow-1.4.5 lib/dynflow/persistence_adapters/sequel_migrations/004_coordinator_records.rb