aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2021-06-05 00:20:14 +0200
committerGravatar Johannes Christ <[email protected]>2021-06-05 00:20:33 +0200
commitef3afdf0db0067e2748540ab1fb02409bbaf144d (patch)
treec4e17de162001d60b14f1bddc3c626ec4adf13d5
parentMerge pull request #510 from bast0006/bast0006-new-infraction-filters (diff)
Include metricity db creation for local setup guide.
This is later mentioned in the connection string, but in the local setup, the SQL statement to create the database was missing.
-rw-r--r--pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md
index 899fd236..ada47931 100644
--- a/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md
+++ b/pydis_site/apps/content/resources/guides/pydis-guides/contributing/site.md
@@ -62,6 +62,7 @@ Run the following queries to create the user and database:
```sql
CREATE USER pysite WITH SUPERUSER PASSWORD 'pysite';
CREATE DATABASE pysite WITH OWNER pysite;
+CREATE DATABASE metricity WITH OWNER pysite;
```
Finally, enter `/q` to exit psql.