app-MAIL-temp/scripts/reset_test_db.sh
2024-07-25 16:18:49 +02:00

7 lines
180 B
Bash
Executable File

#!/bin/sh
export DB_URI=postgresql://myuser:mypassword@localhost:15432/test
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
rye run alembic upgrade head