Revision 15239f1674081ab51ab8dd75a9a40cf1bfaa93e8 authored by John Chilton on 10 June 2019, 19:01:46 UTC, committed by John Chilton on 10 June 2019, 19:01:46 UTC
1 parent 097612f
Raw File
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