Files
supabase/apps/temp-docs/docs/reference/postgres/database-passwords.mdx
2022-04-26 14:17:19 +02:00

53 lines
595 B
Plaintext

---
id: database-passwords
title: "Database Passwords"
slug: database-passwords
custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/postgres.yml
---
import Tabs from '@theme/Tabs';
import TabsPanel from '@theme/TabsPanel';
Manage the passwords of your database users using any super user.
## Examples
### Password reset
<Tabs
defaultActiveId="sql"
groupId="reference/postgres"
values={[{ label: 'SQL', value: 'sql' }]}>
<TabsPanel id="sql" label="sql">
```sql
alter user postgres
with password 'new_password';
```
</TabsPanel>
</Tabs>