mirror of
https://github.com/supabase/supabase.git
synced 2026-05-09 00:10:05 +08:00
27 lines
549 B
TypeScript
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.',
|
|
}
|