mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
6 lines
286 B
SQL
6 lines
286 B
SQL
INSERT INTO group_ (workspace_id, name, summary, extra_perms)
|
|
SELECT id, 'wm_deployers', 'Members can preserve the original author when deploying to this workspace', '{}'::jsonb
|
|
FROM workspace
|
|
WHERE NOT deleted
|
|
ON CONFLICT (workspace_id, name) DO UPDATE SET summary = EXCLUDED.summary;
|