17 lines
338 B
Text
Executable file
17 lines
338 B
Text
Executable file
# to close any database connections
|
|
sudo systemctl stop postgresql
|
|
sudo systemctl start postgresql
|
|
|
|
echo This will delete all of the data in your database.
|
|
echo Your card keys are part of this data.
|
|
echo Continue? "(y or n)"
|
|
|
|
read x
|
|
|
|
if [ "$x" = "y" ]; then
|
|
psql postgres -f create_db.sql
|
|
echo Database created
|
|
else
|
|
echo No action
|
|
fi
|
|
|