From b408be58debc72322fa1680a8f7293b9ba3b571f Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 10 Apr 2024 15:05:57 +0100 Subject: Postgres implementation now set up and in containers - no tables yet --- migrations/setup.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/setup.sql (limited to 'migrations') diff --git a/migrations/setup.sql b/migrations/setup.sql new file mode 100644 index 0000000..3d95044 --- /dev/null +++ b/migrations/setup.sql @@ -0,0 +1,6 @@ +/* should be added manually at this point */ +CREATE DATABASE dbasik; +\c dbasik + +CREATE ROLE 'dbasik' WITH LOGIN PASSWORD 'dbasik'; +CREATE EXTENSION IF NOT EXISTS citext; -- cgit v1.2.3