This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-12 10:09:21 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: conversations
|
|
|
|
#
|
2018-04-23 02:29:17 -07:00
|
|
|
# id :bigint(8) not null, primary key
|
2019-07-28 08:47:37 -07:00
|
|
|
# uri :string
|
2017-05-12 10:09:21 -07:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class Conversation < ApplicationRecord
|
2019-07-28 08:47:37 -07:00
|
|
|
validates :uri, uniqueness: true, if: :uri?
|
|
|
|
|
2017-05-12 10:09:21 -07:00
|
|
|
has_many :statuses
|
2019-07-28 08:47:37 -07:00
|
|
|
|
|
|
|
def local?
|
|
|
|
uri.nil?
|
|
|
|
end
|
2017-05-12 10:09:21 -07:00
|
|
|
end
|