https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 119aaa031f20123a4a007c0f0a0b94c093d98973 authored by John Davis on 02 April 2024, 23:06:58 UTC
Create version 24.0.0
Tip revision: 119aaa0
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