-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename manage_db.sh to manage_toolshed_db.sh. Limit to TS operations.
Becuase everything else is handled via db.sh or run_alembic.sh
- Loading branch information
Showing
2 changed files
with
14 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
####### | ||
# Use this script to manage Tool Shed database migrations. | ||
# NOTE: If your database is empty, use create_toolshed_db.sh instead. | ||
####### | ||
|
||
cd "$(dirname "$0")" || exit | ||
|
||
. ./scripts/common_startup_functions.sh | ||
|
||
setup_python | ||
|
||
python ./scripts/migrate_toolshed_db.py "$@" tool_shed |