https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 0108d6529358e0e3d8a1d6e94c0eb7b5f362db78 authored by John Davis on 22 February 2024, 00:03:00 UTC
Create version 23.2.1
Tip revision: 0108d65
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