2017-05-12 13:09:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: conversations
|
|
|
|
#
|
2017-11-17 18:16:48 -05:00
|
|
|
# id :integer not null, primary key
|
2017-05-12 13:09:21 -04:00
|
|
|
# uri :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class Conversation < ApplicationRecord
|
2017-05-18 21:11:23 -04:00
|
|
|
validates :uri, uniqueness: true, if: :uri?
|
2017-05-12 13:09:21 -04:00
|
|
|
|
|
|
|
has_many :statuses
|
|
|
|
|
|
|
|
def local?
|
|
|
|
uri.nil?
|
|
|
|
end
|
|
|
|
end
|