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