mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-31 01:02:04 +08:00
bd56131ebd
TODO: remove duplication between db.py and db_dev.py (split into multiple commits is intentional)
18 lines
322 B
Bash
Executable File
18 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#######
|
|
# Extended set of database schema migration operaions.
|
|
# For help, run `sh db_dev.sh -h`.
|
|
# For detailed help, see documentation at lib/galaxy/model/migrations/README.md.
|
|
#######
|
|
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
cd ..
|
|
|
|
. ./scripts/common_startup_functions.sh
|
|
|
|
setup_python
|
|
|
|
python scripts/db_dev.py "$@"
|