pgadmin4/web/pgadmin/setup/db_version.py
2017-09-28 10:16:49 +01:00

20 lines
500 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2017, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
from pgadmin.model import Version
def get_version():
try:
version = Version.query.filter_by(name='ConfigDB').first()
except Exception:
return -1
return version.value