mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
16 lines
355 B
Bash
Executable File
16 lines
355 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#######
|
|
# NOTE: To downgrade to a specific version, use something like:
|
|
# sh manage_db.sh downgrade --version=3 <tool_shed if using that webapp - galaxy is the default>
|
|
#######
|
|
|
|
cd `dirname $0`
|
|
|
|
. ./scripts/common_startup_functions.sh
|
|
|
|
setup_python
|
|
|
|
find lib/galaxy/model/migrate/versions -name '*.pyc' -delete
|
|
python ./scripts/manage_db.py $@
|