2017-10-07 18:26:43 +00:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2017-10-07 18:26:43 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_moderation_notes
|
|
|
|
#
|
2018-04-23 09:29:17 +00:00
|
|
|
# id :bigint(8) not null, primary key
|
2017-10-07 18:26:43 +00:00
|
|
|
# content :text not null
|
2018-04-23 09:29:17 +00:00
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# target_account_id :bigint(8) not null
|
2017-10-07 18:26:43 +00:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class AccountModerationNote < ApplicationRecord
|
2024-05-15 13:38:36 +00:00
|
|
|
CONTENT_SIZE_LIMIT = 2_000
|
2024-04-24 08:56:28 +00:00
|
|
|
|
2017-10-07 18:26:43 +00:00
|
|
|
belongs_to :account
|
|
|
|
belongs_to :target_account, class_name: 'Account'
|
|
|
|
|
2024-09-06 14:58:36 +00:00
|
|
|
scope :chronological, -> { reorder(id: :asc) }
|
2017-10-07 18:26:43 +00:00
|
|
|
|
2024-04-24 08:56:28 +00:00
|
|
|
validates :content, presence: true, length: { maximum: CONTENT_SIZE_LIMIT }
|
2017-10-07 18:26:43 +00:00
|
|
|
end
|