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

8 lines
204 B
Ruby
Raw Normal View History

2016-08-18 00:56:23 +09:00
class Mention < ApplicationRecord
2016-02-25 08:17:01 +09:00
belongs_to :account, inverse_of: :mentions
belongs_to :status
2016-02-25 08:17:01 +09:00
validates :account, :status, presence: true
validates :account, uniqueness: { scope: :status }
end