mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-29 02:26:59 +08:00
16 lines
350 B
Bash
Executable File
16 lines
350 B
Bash
Executable File
#!/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 "$@"
|