1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-15 13:08:02 +00:00

Fix a typo in the first statement

This commit is contained in:
jbranchaud
2016-03-04 15:29:44 -06:00
parent c3ead0fbcf
commit 8f5649e479

View File

@@ -9,7 +9,7 @@ user password and later compare it to plain-text passwords for
authentication purposes. authentication purposes.
```sql ```sql
create extensions pgcrypto; create extension pgcrypto;
select crypt('pa$$w0rd', gen_salt('bf')); select crypt('pa$$w0rd', gen_salt('bf'));
crypt crypt