Pavel Loginov 2021-02-04 10:41:23 +06:00 committed by GitHub
parent f67661c1f8
commit f0185cdb46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1065,9 +1065,9 @@ def update_db_v_4_5_9(**kwargs):
def update_ver(**kwargs):
def update_ver():
con, cur = get_cur()
sql = """update version set version = '4.5.8.0'; """
sql = """update version set version = '4.5.9.0'; """
try:
cur.execute(sql)
con.commit()