mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 08:33:45 +01:00
10 lines
210 B
Bash
Executable File
10 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run all pending migrations
|
|
|
|
set -e
|
|
. "${BASH_SOURCE%/*}/common.sh"
|
|
|
|
./utils/reload.sh
|
|
docker exec "$(container app)" sh -c "FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db upgrade"
|