From ef3afdf0db0067e2748540ab1fb02409bbaf144d Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 5 Jun 2021 00:20:14 +0200 Subject: 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. --- .../apps/content/resources/guides/pydis-guides/contributing/site.md | 1 + 1 file changed, 1 insertion(+) 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. -- cgit v1.2.3