2020-03-18 11:23:35 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2022-02-28 12:46:12 +00:00
|
|
|
# Table name: reporting_events
|
2020-03-18 11:23:35 +00:00
|
|
|
#
|
2022-04-08 07:18:18 +00:00
|
|
|
# id :bigint not null, primary key
|
|
|
|
# event_end_time :datetime
|
|
|
|
# event_start_time :datetime
|
|
|
|
# name :string
|
|
|
|
# value :float
|
|
|
|
# value_in_business_hours :float
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer
|
|
|
|
# conversation_id :integer
|
|
|
|
# inbox_id :integer
|
|
|
|
# user_id :integer
|
2020-03-18 11:23:35 +00:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2022-02-28 12:46:12 +00:00
|
|
|
# index_reporting_events_on_account_id (account_id)
|
|
|
|
# index_reporting_events_on_created_at (created_at)
|
|
|
|
# index_reporting_events_on_inbox_id (inbox_id)
|
|
|
|
# index_reporting_events_on_name (name)
|
|
|
|
# index_reporting_events_on_user_id (user_id)
|
2020-03-18 11:23:35 +00:00
|
|
|
#
|
|
|
|
|
2022-02-28 12:46:12 +00:00
|
|
|
class ReportingEvent < ApplicationRecord
|
2020-03-18 11:23:35 +00:00
|
|
|
validates :account_id, presence: true
|
|
|
|
validates :name, presence: true
|
|
|
|
validates :value, presence: true
|
|
|
|
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :user, optional: true
|
|
|
|
belongs_to :inbox, optional: true
|
|
|
|
belongs_to :conversation, optional: true
|
|
|
|
end
|