discourse/app/models/group_mention.rb
Sam c68999e128 annotate models
WARNING annotators out there, be to run bin/annotate on RAILS_ENV=test on a clean db
2017-08-16 10:38:11 -04:00

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
#