2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
2016-02-29 05:22:56 +09:00
|
|
|
belongs_to :status
|
2016-02-25 08:17:01 +09:00
|
|
|
|
|
|
|
validates :account, :status, presence: true
|
|
|
|
validates :account, uniqueness: { scope: :status }
|
|
|
|
end
|