mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-09 02:49:25 +00:00
11 lines
197 B
Ruby
11 lines
197 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DataExplorer
|
||
|
class QueryGroup < ActiveRecord::Base
|
||
|
self.table_name = 'data_explorer_query_groups'
|
||
|
|
||
|
belongs_to :query
|
||
|
belongs_to :group
|
||
|
end
|
||
|
end
|