11 lines
336 B
Ruby
11 lines
336 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ErrorTracking::ErrorEvent < ApplicationRecord
|
|
belongs_to :error, counter_cache: :events_count
|
|
|
|
validates :payload, json_schema: { filename: 'error_tracking_event_payload' }
|
|
|
|
validates :error, presence: true
|
|
validates :description, presence: true
|
|
validates :occurred_at, presence: true
|
|
end
|