https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 74eca3c953c6c99c3a5ccdc780c0ea273a5c305e authored by John Chilton on 15 October 2020, 16:15:17 UTC
Version 20.9.0 of web-framework (tag galaxy-web-framework-20.9.0).
Tip revision: 74eca3c
manage_db.sh
#!/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 $@
back to top