Sha256: cb4cfbddfa9d6bd28ffcc2f6a175dc20c5719764866cad1208cf97a79560e7fc
Contents?: true
Size: 368 Bytes
Versions: 3
Compression:
Stored size: 368 Bytes
Contents
class CreateCronoJobs < ActiveRecord::Migration[6.1] def change create_table :crono_jobs do |t| t.string :job_id, null: false t.text :log, limit: 1073741823 # LONGTEXT for MySQL t.datetime :last_performed_at t.boolean :healthy t.timestamps null: false end add_index :crono_jobs, [:job_id], unique: true end end
Version data entries
3 entries across 3 versions & 1 rubygems