ToolJet/app/models/data_query.rb

6 lines
150 B
Ruby
Raw Normal View History

class DataQuery < ApplicationRecord
belongs_to :app
2021-04-04 17:07:03 +00:00
belongs_to :data_source, optional: true
validates_uniqueness_of :name, scope: [:app_id]
end