https://github.com/galaxyproject/galaxy
Raw File
Tip revision: ae7fe38ea8b9fff70400398964299c4d89755e03 authored by Nate Coraor on 02 May 2023, 15:49:30 UTC
Update pulsar-galaxy-lib to 0.15.2 for test.galaxyproject.org
Tip revision: ae7fe38
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