fixing up the setup db script

This commit is contained in:
2023-07-08 17:22:32 -05:00
parent 60a281084a
commit f3aa379e8a

View File

@ -1,7 +1,7 @@
#!/bin/sh
sudo -u postgres createuser -P -e cavecomm
sudo -u postgres createdb --owner=cavecomm cavecomm 'contains all the information for the cavecomm instance on this device'
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE cavecomm TO cavecomm;"
sudo -u postgres createuser -P -e cavecommadmin
sudo -u postgres createdb --owner=cavecommadmin cavecomm 'contains all the information for the cavecomm instance on this device'
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE cavecomm TO cavecommadmin;"
sudo -u postgres psql -c "CREATE TABLE requests(
id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
customerName text,
@ -45,7 +45,7 @@ sudo -u postgres psql -c "CREATE TABLE templates(
contactInformation text,
currencyPreference text,
priceUpFront decimal,
priceOnDeliver decimal,
priceOnDeliver decimal
);
" cavecomm