2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-03-24 08:55:22 +08:00
|
|
|
class MutedUser < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :muted_user, class_name: "User"
|
|
|
|
end
|
2015-09-18 08:41:10 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: muted_users
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# muted_user_id :integer not null
|
2019-01-12 03:29:56 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2015-09-18 08:41:10 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|