https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 529ec3541a62fd49b221f5a1cec77425c975fb46 authored by John Davis on 21 May 2024, 11:38:40 UTC
Merge pull request #18059 from davelopez/file_sources_pagination
Tip revision: 529ec35
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