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.

21 lines
623 B

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: account_notes
  5. #
  6. # id :bigint(8) not null, primary key
  7. # account_id :bigint(8)
  8. # target_account_id :bigint(8)
  9. # comment :text not null
  10. # created_at :datetime not null
  11. # updated_at :datetime not null
  12. #
  13. class AccountNote < ApplicationRecord
  14. include RelationshipCacheable
  15. belongs_to :account
  16. belongs_to :target_account, class_name: 'Account'
  17. validates :account_id, uniqueness: { scope: :target_account_id }
  18. validates :comment, length: { maximum: 2_000 }
  19. end