Adding a Mention model, test stubs
This commit is contained in:
7
app/models/mention.rb
Normal file
7
app/models/mention.rb
Normal file
@ -0,0 +1,7 @@
|
||||
class Mention < ActiveRecord::Base
|
||||
belongs_to :account, inverse_of: :mentions
|
||||
belongs_to :status, inverse_of: :mentions
|
||||
|
||||
validates :account, :status, presence: true
|
||||
validates :account, uniqueness: { scope: :status }
|
||||
end
|
Reference in New Issue
Block a user