21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-28 05:08:49 +02:00
chexpire/app/models/check_log.rb
2018-05-30 17:01:54 +02:00

29 lines
612 B
Ruby

# == Schema Information
#
# Table name: check_logs
#
# id :bigint(8) not null, primary key
# error :text(65535)
# exit_status :integer
# parsed_response :text(65535)
# raw_response :text(65535)
# status :integer
# created_at :datetime not null
# updated_at :datetime not null
# check_id :bigint(8)
#
# Indexes
#
# index_check_logs_on_check_id (check_id)
#
# Foreign Keys
#
# fk_rails_... (check_id => checks.id)
#
class CheckLog < ApplicationRecord
belongs_to :check
enum status: [:pending, :succeed, :failed]
end