2018-04-02 14:04:14 -06:00
|
|
|
# frozen_string_literal: true
|
2023-02-19 22:58:28 -07:00
|
|
|
|
2018-04-02 14:04:14 -06:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: report_notes
|
|
|
|
#
|
2018-04-23 03:29:17 -06:00
|
|
|
# id :bigint(8) not null, primary key
|
2018-04-02 14:04:14 -06:00
|
|
|
# content :text not null
|
2018-04-23 03:29:17 -06:00
|
|
|
# report_id :bigint(8) not null
|
|
|
|
# account_id :bigint(8) not null
|
2018-04-02 14:04:14 -06:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class ReportNote < ApplicationRecord
|
2024-05-15 07:38:36 -06:00
|
|
|
CONTENT_SIZE_LIMIT = 2_000
|
2024-04-24 02:56:28 -06:00
|
|
|
|
2018-04-02 14:04:14 -06:00
|
|
|
belongs_to :account
|
2018-04-10 12:27:59 -06:00
|
|
|
belongs_to :report, inverse_of: :notes, touch: true
|
2018-04-02 14:04:14 -06:00
|
|
|
|
2018-12-25 22:38:59 -07:00
|
|
|
scope :latest, -> { reorder(created_at: :desc) }
|
2018-04-02 14:04:14 -06:00
|
|
|
|
2024-04-24 02:56:28 -06:00
|
|
|
validates :content, presence: true, length: { maximum: CONTENT_SIZE_LIMIT }
|
2018-04-02 14:04:14 -06:00
|
|
|
end
|