make quote nicks case insensitive

This commit is contained in:
2019-03-31 18:32:44 +00:00
parent 7255dd4735
commit 32c106fc90
2 changed files with 17 additions and 1 deletions

View File

@@ -12,6 +12,8 @@ Create a user with password, allowed to login and a database:
CREATE ROLE nxy WITH ENCRYPTED PASSWORD 'your-password';
ALTER ROLE nxy LOGIN;
CREATE DATABASE nxy_prod OWNER nxy;
\c nxy_prod
CREATE EXTENSION citext;
\q
```