mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-16 05:28:28 +00:00
5 lines
134 B
Ruby
5 lines
134 B
Ruby
class FolderApp < ApplicationRecord
|
|
belongs_to :folder
|
|
belongs_to :app
|
|
validates_uniqueness_of :app_id, scope: [:folder_id]
|
|
end
|