mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 16:05:42 +00:00
* fix: teams, need both guid and thread id format * chore: update ee-repo-ref to 576abf6519d1aa12a2b989a58a123501206284fb This commit updates the EE repository reference after PR #368 was merged in windmill-ee-private. Previous ee-repo-ref: ae41589212f16ff0cec8516c66227f30e17c5564 New ee-repo-ref: 576abf6519d1aa12a2b989a58a123501206284fb Automated by sync-ee-ref workflow. --------- Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
4 lines
230 B
SQL
4 lines
230 B
SQL
-- Add teams_team_guid column to store the GUID (used for MS Graph API calls)
|
|
-- The existing teams_team_id column stores the internal_id (used for webhook matching)
|
|
ALTER TABLE workspace_settings ADD COLUMN teams_team_guid TEXT;
|