2020-08-26 20:29:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-22 17:29:08 -04:00
|
|
|
module ::DiscourseDataExplorer
|
2020-08-26 20:29:57 -04:00
|
|
|
class QueryGroup < ActiveRecord::Base
|
2022-12-29 07:31:29 -05:00
|
|
|
self.table_name = "data_explorer_query_groups"
|
2020-08-26 20:29:57 -04:00
|
|
|
|
|
|
|
belongs_to :query
|
|
|
|
belongs_to :group
|
2022-06-14 11:07:02 -04:00
|
|
|
|
|
|
|
has_many :bookmarks, as: :bookmarkable
|
2020-08-26 20:29:57 -04:00
|
|
|
end
|
|
|
|
end
|