1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 15:16:19 +09:00
mastodon/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