ToolJet/app/models/app.rb

8 lines
215 B
Ruby
Raw Normal View History

2021-04-01 10:59:27 +00:00
class App < ApplicationRecord
belongs_to :organization
2021-04-06 03:14:52 +00:00
has_many :data_queries
2021-04-12 04:12:00 +00:00
has_many :app_users
2021-04-12 09:22:51 +00:00
has_many :app_versions
2021-04-12 14:06:54 +00:00
belongs_to :current_version, class_name: 'AppVersion', optional: true
2021-04-01 10:59:27 +00:00
end