Sha256: 67a5280a20b78e7532afa11d20645182a9aabc177ccf73e92536982cff40b0fa
Contents?: true
Size: 529 Bytes
Versions: 22
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true class AddStatusAttributesToScheduledTasks < ( Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2] ) def change add_column :scheduled_tasks, :last_run_start, :datetime add_column :scheduled_tasks, :last_run_successful_start, :datetime add_column :scheduled_tasks, :last_run_successful_end, :datetime add_column :scheduled_tasks, :last_run_unsuccessful_start, :datetime add_column :scheduled_tasks, :last_run_unsuccessful_end, :datetime end end
Version data entries
22 entries across 22 versions & 1 rubygems