Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dbdev is a package manager for Postgres [trusted language extensions (TLE)](http
### Warning

Restoring a logical backup of a database with a TLE installed can fail. For this reason, dbdev should only be used with databases with physical backups enabled.

## Usage

Users primarily interact with the registry using the dbdev SQL client. Once present, packages can be installed as follows:
Expand Down
4 changes: 4 additions & 0 deletions docs/install-in-db-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Before you can install the dbdev extension into your database, ensure you have t

If you database is running on Supabase, the above dependencies are already installed.

!!! warning

Restoring a logical backup of a database with a TLE installed can fail. For this reason, dbdev should only be used with databases with physical backups enabled.

Run the following SQL to install the client:

```sql
Expand Down
4 changes: 2 additions & 2 deletions website/pages/installer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const InstallerPage: NextPageWithLayout = () => {
export async function getServerSideProps() {
return {
redirect: {
destination: '/supabase/dbdev',
permanent: true,
destination: 'https://supabase.github.io/dbdev/install-in-db-client',
permanent: false,
},
}
}
Expand Down