7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/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
|