23 lines
604 B
Ruby
23 lines
604 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MutedUser < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :muted_user, class_name: 'User'
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: muted_users
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer not null
|
|
# muted_user_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_muted_users_on_muted_user_id_and_user_id (muted_user_id,user_id) UNIQUE
|
|
# index_muted_users_on_user_id_and_muted_user_id (user_id,muted_user_id) UNIQUE
|
|
#
|