mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
1a1ea68216
* feat(frontend): operator visibility setting per workspace * section + reactivity * sqlx prep * npm check * more sqlx * fix table bg dark mode * improve db query / reactivity * sqlx prepare * more merge fixing * npm check * npm check
12 lines
275 B
SQL
12 lines
275 B
SQL
ALTER TABLE workspace_settings ADD COLUMN operator_settings JSONB DEFAULT '{
|
|
"runs": true,
|
|
"groups": true,
|
|
"folders": true,
|
|
"workers": true,
|
|
"triggers": true,
|
|
"resources": true,
|
|
"schedules": true,
|
|
"variables": true,
|
|
"audit_logs": true
|
|
}';
|