fix: update db version to 118

This commit is contained in:
Andrii V 2025-08-05 15:14:01 +02:00
parent 436b0d39f7
commit 5188f58def
2 changed files with 9 additions and 2 deletions

View file

@ -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

View file

@ -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"