This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-07 11:26:43 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_moderation_notes
|
|
|
|
#
|
2017-11-17 15:16:48 -08:00
|
|
|
# id :integer not null, primary key
|
2017-10-07 11:26:43 -07:00
|
|
|
# content :text not null
|
2017-11-17 15:16:48 -08:00
|
|
|
# account_id :integer not null
|
|
|
|
# target_account_id :integer not null
|
2017-10-07 11:26:43 -07:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class AccountModerationNote < ApplicationRecord
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :target_account, class_name: 'Account'
|
|
|
|
|
|
|
|
scope :latest, -> { reorder('created_at DESC') }
|
|
|
|
|
|
|
|
validates :content, presence: true, length: { maximum: 500 }
|
|
|
|
end
|