discourse/app/models/topic_allowed_group.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

23 lines
551 B
Ruby

# frozen_string_literal: true
class TopicAllowedGroup < ActiveRecord::Base
belongs_to :topic
belongs_to :group
validates_uniqueness_of :topic_id, scope: :group_id
end
# == Schema Information
#
# Table name: topic_allowed_groups
#
# id :integer not null, primary key
# group_id :integer not null
# topic_id :integer not null
#
# Indexes
#
# index_topic_allowed_groups_on_group_id_and_topic_id (group_id,topic_id) UNIQUE
# index_topic_allowed_groups_on_topic_id_and_group_id (topic_id,group_id) UNIQUE
#