You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
metu.life/app/models/conversation_mute.rb

14 lines
341 B

# 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