about summary refs log tree commit diff
path: root/app/models/conversation_mute.rb
blob: 316865bd27d6e9dc61e8a69f328d54d7b7629f2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
# == Schema Information
#
# Table name: conversation_mutes
#
#  conversation_id :bigint           not null
#  account_id      :bigint           not null
#  id              :bigint           not null, primary key
#

class ConversationMute < ApplicationRecord
  belongs_to :account, required: true
  belongs_to :conversation, required: true
end