fix: update db version to 118
This commit is contained in:
parent
436b0d39f7
commit
5188f58def
2 changed files with 9 additions and 2 deletions
9
Makefile
9
Makefile
|
|
@ -233,4 +233,11 @@ ruff-format:
|
|||
else \
|
||||
echo "No Python files changed."; \
|
||||
fi
|
||||
@rm -f .changed_files
|
||||
@rm -f .changed_files
|
||||
|
||||
.PHONY: upgrade-db
|
||||
# upgrade-db: Apply database migrations using rc-upgrade-db
|
||||
upgrade-db:
|
||||
/usr/local/bin/rhodecode_bin/bin/rc-upgrade-db \
|
||||
/home/rhodecode/rhodecode-enterprise-ce/.dev/dev.ini \
|
||||
--force-yes
|
||||
|
|
@ -100,7 +100,7 @@ PYRAMID_SETTINGS = {}
|
|||
EXTENSIONS = {}
|
||||
|
||||
__version__ = ".".join((str(each) for each in VERSION[:3]))
|
||||
__dbversion__ = 117 # defines current db version for migrations
|
||||
__dbversion__ = 118 # defines current db version for migrations
|
||||
__license__ = "AGPLv3, and Commercial License"
|
||||
__author__ = "RhodeCode GmbH"
|
||||
__url__ = "https://code.rhodecode.com"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue