Skip to content

Commit 7b82112

Browse files
committed
fix pscale psql snippet
1 parent 6779672 commit 7b82112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/partials/hyperdrive/planetscale-postgres-partial.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ You can connect Hyperdrive to any existing PlanetScale PostgreSQL database by cr
1616
2. Generate a secure password.
1717
3. Run the following snippet to create a new role `hyperdrive-user` in your database:
1818
```sql
19-
CREATE ROLE hyperdrive-user WITH LOGIN PASSWORD '<ENTER_PASSWORD_HERE>';
20-
GRANT INSERT, UPDATE, SELECT, DELETE ON ALL TABLES IN SCHEMA public TO hyperdrive-user;
19+
CREATE ROLE "hyperdrive-user" WITH LOGIN PASSWORD '<ENTER_PASSWORD_HERE>';
20+
GRANT INSERT, UPDATE, SELECT, DELETE ON ALL TABLES IN SCHEMA public TO "hyperdrive-user";
2121
```
2222
3. Note the user, the password, the database host, and the database name. You will need these to create a database configuration in Hyperdrive.
2323

0 commit comments

Comments
 (0)