v8.0.1: Update database version and fix minor formatting issue

This commit updates the database version from 8.0 to 8.0.1 to reflect recent changes. Additionally, a minor formatting adjustment was made by adding a newline for better code readability.
pull/399/head
Aidaho 2024-09-07 13:31:09 +03:00
parent 77701e1d9f
commit 2b96fefba1
1 changed files with 2 additions and 1 deletions

View File

@ -573,6 +573,7 @@ def update_db_v_7_3_1():
else: else:
print("An error occurred:", e) print("An error occurred:", e)
def update_db_v_7_4(): def update_db_v_7_4():
try: try:
migrate( migrate(
@ -621,7 +622,7 @@ def update_db_v_8():
def update_ver(): def update_ver():
try: try:
Version.update(version='8.0').execute() Version.update(version='8.0.1').execute()
except Exception: except Exception:
print('Cannot update version') print('Cannot update version')