about summary refs log blame commit diff
path: root/app/models/conversation_mute.rb
blob: 52c1a33e07dc7102cd5c4b0ac1997abee772fd85 (plain) (tree)
1
2
3
4
5
6
7
8



                                

                                                          

                                          
                          
   
# frozen_string_literal: true
# == Schema Information
#
# Table name: conversation_mutes
#
#  id              :bigint(8)        not null, primary key
#  conversation_id :bigint(8)        not null
#  account_id      :bigint(8)        not null
#

class ConversationMute < ApplicationRecord
  belongs_to :account
  belongs_to :conversation
end