https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 8d9fc6b10bb2d8b7eeacaea49c691bbfe90d39ec authored by Nicola Soranzo on 07 September 2024, 23:33:50 UTC
Merge branch 'release_24.1' into dev
Tip revision: 8d9fc6b
manage_db.sh
#!/bin/sh

#######
# Use this script to manage Galaxy database schema migrations.
# For help, run `sh manage_db.sh -h`. 
# For detailed help, see documentation at https://docs.galaxyproject.org/en/master/admin/db_migration.html
#######

cd "$(dirname "$0")" || exit

. ./scripts/common_startup_functions.sh

setup_python

python ./scripts/db.py "$@"
back to top