mirror of https://github.com/tootsuite/mastodon
22 lines
408 B
Ruby
22 lines
408 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: conversations
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# uri :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Conversation < ApplicationRecord
|
|
validates :uri, uniqueness: true, if: :uri?
|
|
|
|
has_many :statuses, dependent: nil
|
|
|
|
def local?
|
|
uri.nil?
|
|
end
|
|
end
|