discourse/app/models/group_mention.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
520 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GroupMention < ActiveRecord::Base
belongs_to :post
belongs_to :group
end
2016-01-11 01:30:56 -05:00
# == Schema Information
#
# Table name: group_mentions
#
# id :integer not null, primary key
# post_id :integer
# group_id :integer
2019-01-11 14:29:56 -05:00
# created_at :datetime not null
# updated_at :datetime not null
2016-01-11 01:30:56 -05:00
#
# 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
#