Created Postgres Extensions (markdown)

Ajay Ramachandran
2021-03-26 19:01:16 -04:00
parent c68a3f3527
commit 307b58cc6c

10
Postgres-Extensions.md Normal file

@@ -0,0 +1,10 @@
You may need to install some postgres extensions.
Run these queries on the `postgres` database:
```sql
CREATE EXTENSION pgcrypto
SCHEMA public;
CREATE EXTENSION pg_trgm
SCHEMA public;
```