1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-28 14:58:31 +09:00
whippy-edition/app/models/mention.rb
2016-08-17 17:58:00 +02:00

8 lines
204 B
Ruby

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