app-MAIL-temp/scripts/new-migration.sh

19 lines
617 B
Bash
Raw Normal View History

2020-05-07 17:59:21 +02:00
# Generate a new migration script using Docker
# To run it:
2021-08-20 12:00:45 +02:00
# sh scripts/new-migration.sh
2020-05-07 17:59:21 +02: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 17:59:21 +02:00
# sleep a little bit for the db to be ready
sleep 3
2020-05-07 17:59:21 +02: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 17:59:21 +02:00
# remove the db
docker rm -f sl-db