mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
75f7f9930e
It is not part of ActivityPub and will free up a lot of space
14 lines
289 B
Ruby
14 lines
289 B
Ruby
# 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
|