https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 5dccc48db79d0d33bcc61ecf5c701e4ab36e154c authored by mvdbeek on 04 January 2024, 15:15:11 UTC
Create version 23.1.4
Tip revision: 5dccc48
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