contentdb/utils/create_migration.sh

10 lines
359 B
Bash
Raw Normal View History

2020-01-19 00:20:34 +01:00
#!/bin/bash
# Create a database migration, and copy it back to the host.
docker exec -it contentdb_app_1 sh -c "FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db migrate"
docker exec -u root -it contentdb_app_1 sh -c "cp /home/cdb/migrations/versions/* /source/migrations/versions/"
USER=$(whoami)
sudo chown -R $USER:$USER migrations/versions