https://github.com/galaxyproject/galaxy
Raw File
Tip revision: eef864ae9b2de8b50648bc75f482f07dd3a09b89 authored by Marius van den Beek on 22 May 2024, 14:52:57 UTC
Merge pull request #18200 from davelopez/24.0_fix_make_private_immutable
Tip revision: eef864a
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