Sha256: c474aee3f89718af8b6b75719799485751ec60f3256e33f185b3b90041eea481

Contents?: true

Size: 257 Bytes

Versions: 2

Compression:

Stored size: 257 Bytes

Contents

class CreateDelayedWorkers < ActiveRecord::Migration

  def change
    create_table(:delayed_workers) do |t|
      t.string :name
      t.string :version
      t.datetime :last_heartbeat_at
      t.string :host_name
      t.string :label
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delayed_job_heartbeat_plugin-0.2.0 lib/generators/delayed_job_heartbeat_plugin/templates/migration.rb
delayed_job_heartbeat_plugin-0.1.0 lib/generators/delayed_job_heartbeat_plugin/templates/migration.rb