https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 299a8c1b54bd40d7b613c2b520eb7c60123bfe81 authored by John Chilton on 20 November 2019, 12:54:44 UTC
Update version to 19.09
Tip revision: 299a8c1
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