pgadmin4/web/pgadmin/setup/db_version.py
2018-01-05 10:42:50 +00:00

20 lines
500 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2018, 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