jamesrwhite/minicron

View on GitHub
server/lib/minicron/hub/models/alert.rb

Summary

Maintainability
A
0 mins
Test Coverage
require Minicron::REQUIRE_PATH + 'hub/models/base'

module Minicron::Hub
  module Model
    class Alert < Minicron::Hub::Model::Base
      belongs_to :job
      belongs_to :schedule
      belongs_to :execution
    end
  end
end