diff --git a/README.md b/README.md
index b35ae1d3e..2fbf8207f 100644
--- a/README.md
+++ b/README.md
@@ -67,3 +67,24 @@ Assuming Ubuntu or similar
stack:
https://docs.haskellstack.org/en/stable/README/#how-to-install
ldap:
https://wiki.ubuntuusers.de/OpenLDAP_ab_Precise/
+
+
+***
+
+# PostgreSQL
+
+Starten als Root:
+
+# systemctl start postgresql
+# find / -name postgresql.conf
+# cd /var/lib/pgsql/data/
+# su - postgres
+
+
+psql -U uniworx -d uniworx -h 127.0.0.1 -w
+
+--Zeige Tabellen
+\dt
+
+--Lösche Tabelle "course" und alle davon abhängigen:
+DROP TABLE "course" CASCADE;