Skip to content

Commit 850de93

Browse files
authored
Fixed revoke command.
1 parent 9af5e5c commit 850de93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

044_postgres/15_users/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GRANT ALL PRIVILEGES ON DATABASE company to james;
2323

2424
## revoke privileges
2525
```
26-
REVOKE ALL PRIVILEGES ON DATABASE company to james;
26+
REVOKE ALL PRIVILEGES ON DATABASE company from james;
2727
```
2828

2929
## alter
@@ -38,4 +38,4 @@ ALTER USER james WITH NOSUPERUSER;
3838
## remove
3939
```
4040
DROP USER james;
41-
```
41+
```

0 commit comments

Comments
 (0)