about summary refs log tree commit diff
path: root/app/models/conversation.rb
blob: 37d233f326d10ca249e8340a53ec06087efae566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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