2017-05-12 13:09:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: conversations
|
|
|
|
#
|
2018-04-23 05:29:17 -04:00
|
|
|
# id :bigint(8) not null, primary key
|
2019-07-28 11:47:37 -04:00
|
|
|
# uri :string
|
2017-05-12 13:09:21 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class Conversation < ApplicationRecord
|
2019-07-28 11:47:37 -04:00
|
|
|
validates :uri, uniqueness: true, if: :uri?
|
|
|
|
|
2017-05-12 13:09:21 -04:00
|
|
|
has_many :statuses
|
2019-07-28 11:47:37 -04:00
|
|
|
|
|
|
|
def local?
|
|
|
|
uri.nil?
|
|
|
|
end
|
2017-05-12 13:09:21 -04:00
|
|
|
end
|