diff options
Diffstat (limited to 'utility/drop_and_recreate.sh')
-rwxr-xr-x | utility/drop_and_recreate.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/utility/drop_and_recreate.sh b/utility/drop_and_recreate.sh new file mode 100755 index 0000000..89734f4 --- /dev/null +++ b/utility/drop_and_recreate.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +echo "Ensure this is run from project root." +echo "Dropping database..." +sudo -u postgres psql -f utility/drop_and_recreate.sql +echo "Done." + |