mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
700e642c1e
* 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>
5 lines
215 B
SQL
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;
|