drop_database.sh 162 B

1234567
  1. #!/bin/sh
  2. DB=${1:-netbox}
  3. # Drop and re-create the database locally
  4. sudo -u postgres psql -c "drop database $DB"
  5. sudo -u postgres psql -c "create database $DB"