21 lines
431 B
Text
Executable file
21 lines
431 B
Text
Executable file
# to close any database connections
|
|
sudo systemctl stop postgresql
|
|
sudo systemctl start postgresql
|
|
|
|
echo If you have previously created the database
|
|
echo then this will delete it and recreate it.
|
|
echo
|
|
echo Key values for cards may be in the database data.
|
|
echo
|
|
echo Continue? "(y or n)"
|
|
|
|
read x
|
|
|
|
if [ "$x" = "y" ]; then
|
|
psql postgres -f create_db.sql
|
|
psql postgres -f settings.sql
|
|
echo Database created
|
|
else
|
|
echo No action
|
|
fi
|
|
|