mirror of
https://github.com/simple-login/app.git
synced 2026-04-07 19:27:34 +00:00
7 lines
179 B
Bash
Executable File
7 lines
179 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
|
|
|
|
uv run alembic upgrade head
|