https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 592cf1ec84698c645df80702f7876a3440ce9104 authored by mvdbeek on 02 May 2024, 10:27:00 UTC
Create version 24.0.1
Tip revision: 592cf1e
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