FEATURE: store history for scheduled job execution

This commit is contained in:
Sam
2016-05-30 11:38:08 +10:00
parent 089b1d164c
commit c9dcffe434
8 changed files with 138 additions and 1 deletions

View File

@ -0,0 +1,14 @@
class CreateSchedulerStats < ActiveRecord::Migration
def change
create_table :scheduler_stats do |t|
t.string :name, null: false
t.string :hostname, null: false
t.integer :pid, null: false
t.integer :duration_ms
t.integer :live_slots_start
t.integer :live_slots_finish
t.datetime :started_at, null: false
t.boolean :success
end
end
end