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
|
|
|
|
#
|
2017-11-17 15:16:48 -08:00
|
|
|
# id :integer not null, primary key
|
2017-05-12 10:09:21 -07:00
|
|
|
# uri :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class Conversation < ApplicationRecord
|
2017-05-18 18:11:23 -07:00
|
|
|
validates :uri, uniqueness: true, if: :uri?
|
2017-05-12 10:09:21 -07:00
|
|
|
|
|
|
|
has_many :statuses
|
|
|
|
|
|
|
|
def local?
|
|
|
|
uri.nil?
|
|
|
|
end
|
|
|
|
end
|