2021-04-03 11:14:15 +00:00
|
|
|
class DataQuery < ApplicationRecord
|
|
|
|
|
belongs_to :app
|
2021-04-04 17:07:03 +00:00
|
|
|
belongs_to :data_source, optional: true
|
2021-04-30 12:43:29 +00:00
|
|
|
validates_uniqueness_of :name, scope: [:app_id]
|
2021-04-03 11:14:15 +00:00
|
|
|
end
|