Files
windmill/backend/migrations/20251027235539_workspace_slack_oauth.up.sql
Alexander Petric 700e642c1e feat: slack app on workspace level (#6992)
* feat: slack app on workspace level

* frontend

* ee repo ref

* Update SQLx metadata

* repo ref

* ee repo ref

* ee repo ref

* sqlx

* ee repo ref

* ee ref + sqlx

---------

Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
2025-10-30 16:24:44 +00:00

5 lines
215 B
SQL

-- Add workspace-level Slack OAuth configuration fields
ALTER TABLE workspace_settings
ADD COLUMN slack_oauth_client_id VARCHAR(255) DEFAULT NULL,
ADD COLUMN slack_oauth_client_secret VARCHAR(255) DEFAULT NULL;