https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 601d1716cd66cd57faf75a408702711d336357b4 authored by John Chilton on 04 July 2020, 14:00:22 UTC
Version 20.5.0 of containers (tag galaxy-containers-20.5.0).
Tip revision: 601d171
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