mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 13:04:33 +08:00
* Show types from extensions schema in table editor * Shift postgres types to RQ * Deprecate types store in mobx * Address feedback * Update label
8 lines
442 B
TypeScript
8 lines
442 B
TypeScript
export const databaseKeys = {
|
|
schemaList: (projectRef: string | undefined) => ['projects', projectRef, 'schemas'] as const,
|
|
postgresTypes: (projectRef: string | undefined) => ['projects', projectRef, 'types'] as const,
|
|
backups: (projectRef: string | undefined) => [projectRef, 'database', 'backups'] as const,
|
|
poolingConfiguration: (projectRef: string | undefined) =>
|
|
[projectRef, 'database', 'pooling-configuration'] as const,
|
|
}
|