Sha256: 8fab9fa0985b2c33879b3d4733d5aae43ccd2dcecc06a18ff48b986a51f6bee6

Contents?: true

Size: 341 Bytes

Versions: 1

Compression:

Stored size: 341 Bytes

Contents

module DispatchRider
  module ScheduledJob::Migration
    def create_scheduled_jobs_table
      create_table :scheduled_jobs do |t|
        t.datetime :scheduled_at
        t.text :destinations
        t.text :message
        t.string :claim_id
        t.datetime :claim_expires_at

        t.index :scheduled_at
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dispatch-rider-1.7.0 lib/dispatch-rider/scheduled_job/migration.rb