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
|