Skip to content

Commit

Permalink
# edit pgsql readme
Browse files Browse the repository at this point in the history
  • Loading branch information
czy21 committed Aug 9, 2024
1 parent f899b65 commit 691be51
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions server/docker/db/pgsql/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Create Extension
```sql
CREATE EXTENSION "uuid-ossp";
```

# Create User
```sql
CREATE USER <username> WITH PASSWORD '<password>';
alter role <username> superuser;
drop role <username>;
```

0 comments on commit 691be51

Please sign in to comment.