blob: 52c1a33e07dc7102cd5c4b0ac1997abee772fd85 (
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
#
# 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
|