https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a7f0a365be176e8ae4445db147a634b3b1fbb3b3 authored by mvdbeek on 13 June 2023, 15:58:13 UTC
Create version 23.0.2
Tip revision: a7f0a36
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 lib/galaxy/model/migrations/README.md.
#######

cd "$(dirname "$0")" || exit

. ./scripts/common_startup_functions.sh

setup_python

python ./scripts/db.py "$@"
back to top