mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 00:04:23 +08:00
29 lines
661 B
JavaScript
29 lines
661 B
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'category',
|
|
label: 'About',
|
|
items: ['reference/postgres/index'],
|
|
collapsed: true,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Managing Tables',
|
|
items: ['reference/postgres/schemas', 'reference/postgres/tables'],
|
|
collapsed: true,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Replication',
|
|
items: ['reference/postgres/publications'],
|
|
collapsed: true,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Database Configuration',
|
|
items: ['reference/postgres/database-passwords', 'reference/postgres/changing-timezones'],
|
|
collapsed: true,
|
|
},
|
|
],
|
|
}
|