mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
16 lines
569 B
Bash
16 lines
569 B
Bash
|
# Generate a new migration script using Docker
|
||
|
# To run it:
|
||
|
# sh new_migration.sh
|
||
|
|
||
|
# create a postgres database for SimpleLogin
|
||
|
docker rm -f sl-db
|
||
|
docker run -p 5432:5432 --name sl-db -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=sl -d postgres
|
||
|
|
||
|
# run run `flask db upgrade` to upgrade the DB to the latest stage and
|
||
|
env DB_URI=postgresql://postgres:postgres@127.0.0.1:5432/sl flask db upgrade
|
||
|
|
||
|
# finally `flask db migrate` to generate the migration script.
|
||
|
env DB_URI=postgresql://postgres:postgres@127.0.0.1:5432/sl flask db migrate
|
||
|
|
||
|
# remove the db
|
||
|
docker rm -f sl-db
|