mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
7 lines
205 B
Ruby
7 lines
205 B
Ruby
class App < ApplicationRecord
|
|
belongs_to :organization
|
|
has_many :data_queries
|
|
has_many :app_users
|
|
has_many :app_versions
|
|
belongs_to :current_version, class_name: 'AppVersion', optional: true
|
|
end
|