about summary refs log tree commit diff
path: root/app/models/conversation_mute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/conversation_mute.rb')
-rw-r--r--app/models/conversation_mute.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/models/conversation_mute.rb b/app/models/conversation_mute.rb
new file mode 100644
index 000000000..79299b995
--- /dev/null
+++ b/app/models/conversation_mute.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+# == Schema Information
+#
+# Table name: conversation_mutes
+#
+#  id              :integer          not null, primary key
+#  account_id      :integer          not null
+#  conversation_id :integer          not null
+#
+
+class ConversationMute < ApplicationRecord
+  belongs_to :account, required: true
+  belongs_to :conversation, required: true
+end