https://github.com/galaxyproject/galaxy
Raw File
Tip revision: abd3b7a2935e454fd692e11be8d15c3614ece484 authored by John Chilton on 21 May 2021, 18:51:24 UTC
Version 21.1.1 of tool-util (tag galaxy-tool-util-21.1.1).
Tip revision: abd3b7a
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