This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/models/conversation.rb

14 lines
289 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# == Schema Information
#
# Table name: conversations
#
# id :bigint(8) not null, primary key
# created_at :datetime not null
# updated_at :datetime not null
#
class Conversation < ApplicationRecord
has_many :statuses
end