mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
16 lines
324 B
Bash
Executable File
16 lines
324 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 lib/galaxy/model/migrations/README.md.
|
|
#######
|
|
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
. ./scripts/common_startup_functions.sh
|
|
|
|
setup_python
|
|
|
|
python ./scripts/db.py "$@"
|