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

class StatusMute < ApplicationRecord
  belongs_to :account, inverse_of: :status_mutes
  belongs_to :status, inverse_of: :mutes
end