Skip to content

Workflows apps private

workflows_apps_private

  • Schema: public
  • PK: workflows_app_private_id (uuid)

Columns

Column Type Nullable Default Notes
workflows_app_private_id uuid NO PK
app_name varchar NO
app_type varchar NO Unique integration type slug
app_type_display varchar NO Human-readable name
serving_base_url varchar NO Base URL for the custom app
app_icon_svg_url varchar NO Icon asset URL
app_description varchar NO
routes_directory_path varchar NO Path to route definitions
options jsonb YES
created_by bigint NO
created_time timestamp YES now()
last_modified_by bigint NO
last_modified_time timestamp YES now()
workspace_id bigint NO FK to workspaces
module_description varchar YES
is_archived bool YES false

Key indexes

  • workflows_apps_private_pkey on (workflows_app_private_id)
  • unique_app_type_per_workspace UNIQUE on (app_type, workspace_id)
  • unique_base_url_per_workspace UNIQUE on (serving_base_url, workspace_id)

Notes

  • Workspace-scoped custom integrations (private apps).
  • serving_base_url is where the platform proxies module execution requests.