Files
malarkey/scripts/resetdb.sh
2022-11-23 22:44:32 +00:00

8 lines
191 B
Bash
Executable File

#!/usr/bin/env bash
echo Dropping exiting db
dropdb -f --if-exists -h localhost -U postgres malarkey_dev
echo Creating new db
createdb -h localhost -U postgres malarkey_dev
mix ecto.migrate