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