1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/app/models/mention.rb

8 lines
205 B
Ruby

class Mention < ActiveRecord::Base
belongs_to :account, inverse_of: :mentions
belongs_to :status
validates :account, :status, presence: true
validates :account, uniqueness: { scope: :status }
end