simple-login/scripts/new-migration.sh

20 lines
618 B
Bash
Raw Normal View History

2020-05-07 15:59:21 +00:00
# Generate a new migration script using Docker
# To run it:
2021-08-20 10:00:45 +00:00
# sh scripts/new-migration.sh
2020-05-07 15:59:21 +00:00
# create a postgres database for SimpleLogin
docker rm -f sl-db
docker run -p 25432:5432 --name sl-db -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=sl -d postgres:13
2020-05-07 15:59:21 +00:00
# sleep a little bit for the db to be ready
sleep 3
2020-05-07 15:59:21 +00:00
# upgrade the DB to the latest stage and
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl poetry run alembic upgrade head
# generate the migration script.
env DB_URI=postgresql://postgres:postgres@127.0.0.1:25432/sl poetry run alembic revision --autogenerate
2020-05-07 15:59:21 +00:00
# remove the db
2022-02-03 21:11:42 +00:00
docker rm -f sl-db