The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
643 B

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: account_moderation_notes
  5. #
  6. # id :integer not null, primary key
  7. # content :text not null
  8. # account_id :integer not null
  9. # target_account_id :integer not null
  10. # created_at :datetime not null
  11. # updated_at :datetime not null
  12. #
  13. class AccountModerationNote < ApplicationRecord
  14. belongs_to :account
  15. belongs_to :target_account, class_name: 'Account'
  16. scope :latest, -> { reorder('created_at DESC') }
  17. validates :content, presence: true, length: { maximum: 500 }
  18. end