https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 907130d77291dd971ce39b6a3541ad85f2547c93 authored by mvdbeek on 21 February 2022, 09:28:38 UTC
Fix repository uploads with remove_repo_files_not_in_tar
Tip revision: 907130d
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