2017-05-12 19:09:21 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: conversations
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# 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
|