mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-14 20:48:25 +00:00
8 lines
240 B
Ruby
8 lines
240 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
|
|
belongs_to :user, optional: true
|
|
end
|