Sha256: ec155a2f17208aa62b293886299bf025a53560ecd9e0e39bdbe6aa18fefc1915
Contents?: true
Size: 561 Bytes
Versions: 34
Compression:
Stored size: 561 Bytes
Contents
# frozen_string_literal: true class CreateSidekiqPublisherJobs < ActiveRecord::Migration[5.1] def change # rubocop:disable Rails/CreateTableWithTimestamps create_table(:sidekiq_publisher_jobs, id: :bigserial) do |t| t.string :job_id, null: false t.string :job_class, null: false t.string :queue t.string :wrapped t.json :args, null: false t.float :run_at t.timestamp :published_at, index: true t.timestamp :created_at, null: false end # rubocop:enable Rails/CreateTableWithTimestamps end end
Version data entries
34 entries across 34 versions & 1 rubygems