2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-27 07:49:07 -06:00
|
|
|
class IgnoredUser < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :ignored_user, class_name: "User"
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: ignored_users
|
|
|
|
#
|
2019-05-02 17:34:12 -05:00
|
|
|
# id :bigint not null, primary key
|
2019-01-03 11:03:01 -06:00
|
|
|
# user_id :integer not null
|
2019-02-27 07:49:07 -06:00
|
|
|
# ignored_user_id :integer not null
|
2019-01-03 11:03:01 -06:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2019-04-02 00:17:55 -05:00
|
|
|
# summarized_at :datetime
|
|
|
|
# expiring_at :datetime
|
2019-02-27 07:49:07 -06:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|