ToolJet/app/models/folder_app.rb
2021-05-19 15:50:05 +05:30

5 lines
134 B
Ruby

class FolderApp < ApplicationRecord
belongs_to :folder
belongs_to :app
validates_uniqueness_of :app_id, scope: [:folder_id]
end