api development
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-08-08 21:58:36 +09:00
parent d58302c2c8
commit cc87dcc0fa
157 changed files with 14629 additions and 7 deletions

6
scripts/migrate.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
for s in auth profiles match chat payments; do
docker compose run --rm $s alembic revision --autogenerate -m "init"
docker compose run --rm $s alembic upgrade head
done