Skip to content

Commit

Permalink
database.upgrade:upgrade_4_1to4_1_1 - fix missing commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoCampinoti94 committed Dec 18, 2024
1 parent 14d5958 commit fc0a6a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions acacore/database/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def upgrade_4to4_1(con: Connection) -> Version:
def upgrade_4_1to4_1_1(con: Connection) -> Version:
con.execute("drop table metadata")
con.execute("create table metadata (key text not null, value text, primary key (key))")
con.commit()
return set_db_version(con, Version("4.1.1"))


Expand Down

0 comments on commit fc0a6a6

Please sign in to comment.