mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
7 lines
180 B
Bash
Executable File
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
|