mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
5 lines
150 B
Ruby
5 lines
150 B
Ruby
class DataQuery < ApplicationRecord
|
|
belongs_to :app
|
|
belongs_to :data_source, optional: true
|
|
validates_uniqueness_of :name, scope: [:app_id]
|
|
end
|