mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Update database metadata default version to 1.5.6
This commit is contained in:
parent
0f782cae09
commit
e996988b90
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ class Database:
|
|||
|
||||
def get_metadata(self) -> Dict[str, str]:
|
||||
"""Get the metadata from the database"""
|
||||
data = {"version": "1.5.4", "integration": "unknown"}
|
||||
data = {"version": "1.5.6", "integration": "unknown"}
|
||||
with self.__db_session() as session:
|
||||
with suppress(ProgrammingError, OperationalError):
|
||||
metadata = session.query(Metadata).with_entities(Metadata.version, Metadata.integration).filter_by(id=1).first()
|
||||
|
|
|
|||
Loading…
Reference in a new issue