mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
c68999e128
WARNING annotators out there, be to run bin/annotate on RAILS_ENV=test on a clean db
21 lines
489 B
Ruby
21 lines
489 B
Ruby
class GroupMention < ActiveRecord::Base
|
|
belongs_to :post
|
|
belongs_to :group
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: group_mentions
|
|
#
|
|
# id :integer not null, primary key
|
|
# post_id :integer
|
|
# group_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_group_mentions_on_group_id_and_post_id (group_id,post_id) UNIQUE
|
|
# index_group_mentions_on_post_id_and_group_id (post_id,group_id) UNIQUE
|
|
#
|