2017-04-15 00:11:02 -04:00
|
|
|
class UserWarning < ActiveRecord::Base
|
2014-09-08 11:11:56 -04:00
|
|
|
belongs_to :user
|
|
|
|
belongs_to :topic
|
|
|
|
belongs_to :created_by, class_name: 'User'
|
|
|
|
end
|
2014-11-19 22:53:15 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
2017-04-20 15:47:25 -04:00
|
|
|
# Table name: user_warnings
|
2014-11-19 22:53:15 -05:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# topic_id :integer not null
|
|
|
|
# user_id :integer not null
|
|
|
|
# created_by_id :integer not null
|
2018-02-20 01:28:58 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-11-19 22:53:15 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2017-04-20 15:47:25 -04:00
|
|
|
# index_user_warnings_on_topic_id (topic_id) UNIQUE
|
|
|
|
# index_user_warnings_on_user_id (user_id)
|
2014-11-19 22:53:15 -05:00
|
|
|
#
|