From 6ac9f0d6ef5e8aba9c7d94631822026fc9fa60b5 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Fri, 6 Oct 2023 14:15:05 -0500 Subject: [PATCH] Name the devloper's database "sokwedb_dev", not "sokwedb_copy" --- bin/sokwedb-user-add.m4 | 2 +- bin/sokwedb-user-delete.m4 | 4 ++-- doc/src/architecture/databases.m4 | 16 ++++++++-------- make_files/defaults.mk | 4 ++-- make_files/make_db.mk | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bin/sokwedb-user-add.m4 b/bin/sokwedb-user-add.m4 index 55ed356..38ad987 100644 --- a/bin/sokwedb-user-add.m4 +++ b/bin/sokwedb-user-add.m4 @@ -130,7 +130,7 @@ begin; create schema $A_USER authorization $A_USER; grant usage on schema $A_USER to public; commit; -\c sokwedb_copy +\c sokwedb_dev begin; create schema $A_USER authorization $A_USER; grant usage on schema $A_USER to public; diff --git a/bin/sokwedb-user-delete.m4 b/bin/sokwedb-user-delete.m4 index fb5eae1..66804fc 100644 --- a/bin/sokwedb-user-delete.m4 +++ b/bin/sokwedb-user-delete.m4 @@ -59,8 +59,8 @@ done export A_USER=$2 if [ -z "$ADMIN" ] ; then -psql $HOSTARGS -U $A_ADMINUSER -d sokwedb_copy <