mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:11:38 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
25 lines
690 B
Ruby
25 lines
690 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IgnoredUser < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :ignored_user, class_name: "User"
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: ignored_users
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_id :integer not null
|
|
# ignored_user_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# summarized_at :datetime
|
|
# expiring_at :datetime
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_ignored_users_on_ignored_user_id_and_user_id (ignored_user_id,user_id) UNIQUE
|
|
# index_ignored_users_on_user_id_and_ignored_user_id (user_id,ignored_user_id) UNIQUE
|
|
#
|