From 2fdf7968223f653b71a6d8a9289437b7cc329a6a Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Sun, 9 Jul 2023 16:56:39 -0500 Subject: [PATCH] remove typo from setupdbfix originally had an extra 's' at the end of routeparameters, breaking aliases. Fixes: #33 --- setupdb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupdb.sh b/setupdb.sh index 087927b..38b242c 100755 --- a/setupdb.sh +++ b/setupdb.sh @@ -75,7 +75,7 @@ sudo -u postgres psql -c "CREATE TABLE aliasRoutes( aliasName text PRIMARY KEY, freelancerID int, route text, - routeParameters text + routeParameter text ); " cavecomm sudo -u postgres psql cavecomm -c "GRANT ALL ON ALL FUNCTIONS IN SCHEMA public to cavecommadmin;"