Files
supabase/apps/studio/components/interfaces/Database/Extensions/Extensions.constants.ts
kemal.earth 167ad55f57 chore(studio): hide pg stat monitor from extensions list (#41880)
chore: hide pg stat monitor from extensions list
2026-01-15 08:44:40 +00:00

27 lines
549 B
TypeScript

export const HIDDEN_EXTENSIONS = [
'adminpack',
'amcheck',
'file_fdw',
'lo',
'old_snapshot',
'pageinspect',
'pg_buffercache',
'pg_freespacemap',
'pg_surgery',
'pg_visibility',
'supabase_vault',
'supautils',
'intagg',
'xml2',
'pg_tle',
'pg_stat_monitor',
]
export const SEARCH_TERMS: Record<string, string[]> = {
vector: ['pgvector', 'pg_vector'],
}
export const EXTENSION_DISABLE_WARNINGS: Record<string, string> = {
pg_cron: 'Disabling this extension will delete all scheduled jobs. This cannot be undone.',
}